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.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||
|