Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
Fifty50 #1
Making individual preloaders
[url]http://homepage.mac.com/curtdog/jaypeak2004/[/url]
Hi all, I've made a preloader which looks at the parent timeline and won't
proceed until all the bytes have been loaded. here's the code i used:
iz = _parent.getBytesLoaded();
ttl = _parent.getBytesTotal();
per = Math.floor((iz*100)/ttl);
if (per >= 100){
_root.gotoAndPlay(2);
}
My problem is, my whole file is on one timeline. Take a look at my site and
you'll see that it can take quite a while to load the entire file. Each photo
is on a single frame on the root timeline, because I prefer not to use Scenes
in my files. My question is, how can I insert individual preloaders for each
frame on my timeline so that when you click a thumbnail, it will show a
preloader then load the next frame?
Fifty50 Guest
-
help with preloaders and scenes
loadedBytes = _root.getBytesLoaded(); totalBytes = _root.getBytesTotal(); if (loadedBytes<totalBytes) { percentageOutput =... -
TESTING PRELOADERS
Hi guys. I am at a beginner - intermediate level when it comes to Flash and a complete beginner when it comes to AScript. I cannot get my head... -
Preloaders
Hello, I'm working on a projector for a CD-ROM, however there some large files that need to be preloaded... so ideally rather than freeze on a... -
Export on 1st frame and preloaders
On my site , http://www.sbcyouth.org i have a preloader set up. I also want to create a "play", "pause", and "stop" buttons for a sound loop that i... -
Mx scroll and preloaders...
Any have this similar problem? My preloaders work fine, for a regualr page, but when I add the Flash MX ScrollPane the preloader doesnt show up... -
Fifty50 #2
Re: Making individual preloaders
*bump*
come on, i know someone out there k nows the answer, it can't be that difficult, i just want someone to help me with the scripting
Fifty50 Guest



Reply With Quote

