|
-
-
Senior Member
put this script into the frame before your movie starts.
I am not 100% sure it is correct since I do not have the script by hand right now but it is something like this
Code:
loadedBytes = this.getBytesLoaded();
totalBytes = this.getBytestotal();
percentOut = ((loadedBytes/totalBytes)*100);
if (loadedBytes < totalBytes){
_root.gotoAndPlay("preloader");
}else if (loadedBytes==totalBytes) {
_root.gotoAndPlay("beginmovie");
mymovieClip._xscale = percentOut;
_xscale is only one example. You can do other things.
-
-
-
Senior Member
It's a great site. The preloader is not at all dull.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|