Setting a preload amount
Now, we don't always want to load the whole file before playing the movie (if fact loading it all is usually the exception not the rule). So let's define what percentage we want to pre-load before we start playing the movie again.
Here's the code:
onClipEvent (load) { preLoad = (_parent.getBytesTotal() * 0.75); //percent to preload _parent.stop(); } onClipEvent (enterFrame) { if (_parent.getBytesLoaded() <%gt%>= preLoad) { _parent.play(); } }
preLoad is a variable that is attached to our loader movie. It contains the number of bytes that we want to load before playing the parent movie. I picked a value of 75% for starters. It can be changed at any time as required. We set it in the load event of the loader so that it is computed only once because function calls (such as the getBytesLoaded function) and instructions to multiply numbers can slow down your ActionScript code especially if called every frame.
The enterFrame event now gets the number of bytes loaded so far and compares it to the amount that we want to pre-load. If we have enough, it starts the parent movie playing again.
» Level Advanced |
Added: 2003-12-08 Rating: 8 Votes: 169 |
» Author |
Tim is a co-director of the Glasson Murray Group, providing quality graphic design, illustration, 3D visualisation, interactive environments, virtual reality, multimedia and website services. |
» Download |
Download the files used in this tutorial. |
Download (1860 kb) |
» Forums |
More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.
Comments
There are no comments yet. Be the first to comment!