Hi there.
I am using Flash MX 2004 and would like to find a resource that will help me
create a fast preloader.
Some of the ones I am seeing are asking me to create 40 frames worth of
preloaders,
and some other preloaders are not working in MX 2k4.
Thanks in advance for your help. (Please provide links)
Rock2007_laptop - 25 May 2007 04:52 GMT
> Hi there.
> I am using Flash MX 2004 and would like to find a resource that will help
[quoted text clipped - 6 lines]
>
> Thanks in advance for your help. (Please provide links)
simple, fast one frame preloader:
1. place actionscript on first frame.
stop();
this.onEnterFrame = function() {
percent = "Loading: "+int(getBytesLoaded()/getBytesTotal()*100)+"%";
if (getBytesLoaded() == getBytesTotal()) {
delete this.onEnterFrame;
nextFrame();
}
}
2. place start of your movie (or a large pic to test) on second frame
3. Run using bandwidth settings to test
rgds
ptrok