Thank you so much for all your help, I got it working - ignoring the ready event, which doesn't seems to trigger before the full buffer time, I just use bytes loaded to tell it when to start:
stop(); skipintro._visible = false; introflv._visible = false; var listenerObject:Object = new Object(); listenerObject.complete = function(eventObject:Object):Void { gotoAndPlay('main'); }; listenerObject.progress = function(eventObject:Object):Void { //getURL("javascript:alert('progress')"); var percent = introflv.bytesLoaded/introflv.bytesTotal; trace(percent); preloader.progressbar._xscale = percent * 100; if(percent >=1){ introflv._visible = true; preloader._visible = false; skipintro._visible = true; introflv.play(); } }; introflv.addEventListener("complete", listenerObject); introflv.addEventListener("progress", listenerObject); introflv.load("DRIVERSPLASHLg.flv"); On 6/19/06, Sarah Plowright <[EMAIL PROTECTED]> wrote:
I am testing locally, although I assumed that since you can test other progress loaders locally this would work - now that it's uploaded - the progress bar is sort of working (at least it's called more than once), but the ready event isn't triggering properly... it'll show the first frame of the video, but it won't play for 30 seconds or so. On 6/19/06, Steve Krichten <[EMAIL PROTECTED]> wrote: > From the help ... > > "Event; dispatched at the frequency specified by the |progressInterval| > property, *starting when the load begins and ending when all bytes are > loaded* or there is a network error. Default is every .25 seconds." > > So my guess is that you are testing this locally... loading an FLV file > that is on your computer. If so, what you are seeing is the expected > behavior. Since the video file is already on your machine, it loads > instantly and the progress event will not fire once the video is > loaded. Try it with a file that is on a server somewhere and you will > see what you are looking to see. > > -Steve > > -------------------------------------------------------------------- > From: "Sarah Plowright" <[EMAIL PROTECTED]> > Subject: Re: [Flashcoders] FLVPlayback progress event listener > To: "Flashcoders mailing list" <flashcoders@chattyfig.figleaf.com> > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I am really just starting to do video stuff, so i'm a little > clueless.. I believe it's a progressive download. And the code doesn't > seem to be being executed repeatedly, as the other flv events are > behaving themselves..... > > > _______________________________________________ > Flashcoders@chattyfig.figleaf.com > To change your subscription options or search the archive: > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > Brought to you by Fig Leaf Software > Premier Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com >
_______________________________________________ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com