[AS]
stop();
loadMovie(_root.choice, _root.lcd.viewerContent);
bytes_loaded = _root.lcd.viewerContent.getBytesLoaded();
bytes_total = _root.lcd.viewerContent.getBytesTotal();
loadText = bytes_loaded/bytes_total+"%";
if (bytes_loaded == bytes_total) {
play();
}
[/AS]
This script is stored in a frame and what is supposed to happen is that the movie play’s once the selected external swf is fully loaded using loadMovie. Right now however the movie just stops at this frame and doesn’t show the loadText percentage box or an little loading animation I have. What’s the proper script that I would need that would cause flash to pause at this frame and only continue playing once the external swf, using loadMovie, had been loaded?
Thanks,
Fargate