A script in this movie is causing Macromedia Flash Player to run slowly. If it continues to run, your computer may become unresponsive. Do you want to abort the script?
[center][Yes] [No][/center]
I have searched and searched, checked and double checked, however, i can’t find the error.
[AS]
BytesLoaded = Math.round(this.getBytesLoaded());
BytesTotal = Math.round(this.getBytesTotal());
PercentDec = BytesLoaded/BytesTotal;
TotalPercent = Math.round(PercentDec100)
this.Percent = Math.round(PercentDec100)+"%";
if (BytesLoaded == BytesTotal) {
this.gotoAndPlay(3);
}
[AS]
I managed to narrow it down to this; I am pretty sure it is something with this:
[AS]
if (BytesLoaded == BytesTotal) {
this.gotoAndPlay(3);
}
[AS]
Does it need to be within an onClipEvnt handler?
By searching on kirupa, i have found that it is a result of an endless loop ussually.
I can’t see an endless loop?