flash question
flash question
Out of context: Reply #2
- Started
- Last post
- 5 Responses
- Scotty5120
This will work:
btload = this.getBytesLoaded();
totbt = this.getBytesTotal();
percentloaded = btload*100/totbt;
if (btload>=totbt) {
// trace ("loading complete");
gotoAndPlay("content", 1);
} else {
gotoAndPlay(1);
}