Search tutorials
Step 2 - The Scripting
onClipEvent (enterFrame) {
if (_root.loadingsequence == true && this.percent == null) {
loadMovie("http://www.yourdomain.com/your.swf", _root.shell);
_root.shell._alpha = 0;
this.percent = 0;
}
if (_root.loadingsequence == true && _root.shell.getBytesTotal() > 10) {
this.percent = (_root.shell.getBytesLoaded()/_root.shell.getBytesTotal()*100);
_root.loadingtext = Math.floor(this.percent);
_root.loadingbar._width = 476-(this.percent*4.76);
if (this.percent == 100) {
_root.shell._alpha = 100;
_root.loadingsequence = false;
}
}
}
NOTE: Your browser may wrap long lines of code onto 2 or more lines, even though they should be 1 when entered into Flash. Download the example .fla to make sure you are using the following code properly. In the example .fla I also explain in detail what each line of code is doing.
| » Level Intermediate |
|
Added: 2003-05-19 Rating: 6.96 Votes: 98 |
| » Author |
| designer . consultant . IT specialist |
| » Download |
| Download the files used in this tutorial. |
| Download (9 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!