[Flashcoders] RE: Job Opportunity in Tucson

2005-12-21 Thread John Olson
Chris -- I passed this info along to a friend of mine who teaches at Tucson Design College. Good luck. - John O. -Original Message- Message: 17 Date: Tue, 20 Dec 2005 15:23:53 -0700 From: Chris Hill [EMAIL PROTECTED] Subject: [Flashcoders] Job Opportunity in Tucson To: Flashcoders

[Flashcoders] Sound.loadSound --- when does streaming actually start?

2006-01-05 Thread John Olson
If I load an external MP3 into the Flash player and set up Flash to load it as a streaming event, when does it start to play? In the AS2 language reference, it states : Streaming sounds play while they are downloading. Playback begins when sufficient data has been received to start the

Re: OT [Flashcoders] Flash 8 and Rosetta -- MacIntel

2006-01-10 Thread John Olson
There is an Apple Store right near my work here in Vegas. I just got back from lunch and they expect to have a new intel-based iMac within the next few days. Once it comes in, I'll see if I can run Flash and do some tests. - John Message: 15 Date: Tue, 10 Jan 2006 21:14:01 +0100 From: S ? ren

[Flashcoders] RE: Good Intro to Flash and SCORM?

2006-01-20 Thread John Olson
Dan -- Not sure what you need to build or how much, but e-Learning Consulting sells a Flash-based SCORM toolkit for $149. http://www.e-learningconsulting.com/products/authoring/flash.html It's already set up to handle all the SCORM communication and has an easy to use ActionScript API. -

RE: [Flashcoders] Flash Remoting

2006-01-23 Thread John Olson
JP -- If you have used the Remoting Installer (http://download.macromedia.com/pub/flashremoting/mx2004/components/actionsc ript_2.0/flashremoting_comp_as20-win-en.exe), then you'll need to drag the Remoting Class library into your document before you can use them. When you do it this way, you

[Flashcoders] RE: MGEG to FLV...

2006-04-09 Thread John Olson
Or you could use FFMPEG. FLV Encoding with FFmpeg Here is a post on using FFMPEG to convert MPG to FLV. http://www.db75.com/new_blog/?p=98 - John -Original Message- Date: Sun, 9 Apr 2006 12:02:19 +0100 From: kariminal [EMAIL PROTECTED] Subject: [Flashcoders] MGEG to FLV... To:

[Flashcoders] CellRenderer : Mix of double and single lines?

2006-07-08 Thread John Olson
I know its possible to create a multiline CellRenderer. Macromedia has a sample of this on their site. Is it possible to create a CellRenderer that can create both single and multiline cells in a List, Tree or DataGrid? - John ___

[Flashcoders] Re: V2 components too heavy

2006-12-06 Thread John Olson
http://www.osflash.org/components Mudit -- check out this OSFlash page on the various components out there. There is also a good page on Patrick Mineault's page that talks about several of the component sets. http://www.5etdemi.com/blog/archives/2005/10/battle-of-the-component-sets/ From

[Flashcoders] Re: Flashcoders Digest, Vol 23, Issue 13

2006-12-06 Thread John Olson
Another way to tackle it as well is to split it and compare the 2nd element of the split array. var num:Number = 2.3; var split:Array = String(num).split(.); trace(3 == split[1]); On 12/6/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Message: 21 Date: Wed, 6 Dec 2006 12:22:43 -0800 From:

[Flashcoders] frame 1 - stop() not working with simulate download

2006-12-12 Thread John Olson
I'm not sure why I never noticed this after so many years, but I was doing a demo for someone the other day and Flash was doing some weird things. It was an old school preloader demo with a stop() and an onEnterFrame loop on frame 1 that checked the bytes loaded and bytes total. I was

Re: [Flashcoders] frame 1 - stop() not working with simulate download

2006-12-12 Thread John Olson
-- if(bytesLoaded==bytesTotal bytesLoaded1024) On 12/12/06, John Olson [EMAIL PROTECTED] wrote: I'm not sure why I never noticed this after so many years, but I was doing a demo for someone the other day and Flash was doing some weird things. It was an old school preloader demo with a stop

Re: [Flashcoders] swfobject still preferred method?

2007-10-19 Thread John Olson
It changed names, and then came back to SWFobject. 2.0 is in beta now. http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/ On 10/18/07, Count Schemula [EMAIL PROTECTED] wrote: Is swfobject still the preferred method of publishing flash files? For some reason I thought I heard there

[Flashcoders] navigateToURL or getURL and pop-up blocking

2007-10-21 Thread John Olson
I have a client Flash AS3 project where I need to open a new window from within Flash. I won't have any control over the html wrapper for the SWF so I can't use javascript within the HTML page. I've read suggestions about using Javascript:window.open but seems that will get blocked as