Here’s a basic one! I have managed (finally) to get a progress bar working through a loader, but the swf starts half way through - where it has loaded to in the background. Here is the code I have so far…
myLoader.contentPath=“golding.swf”;
myBar.setStyle(“themeColor”, “0xB50000”);
myBar.setStyle(“color”, “0xFFAC2E”);
myBar.label="%1 KB out of %2 KB loaded (%3%%)"
myBar.conversion=1024;
myBar.source=myLoader;
myBar.mode=“polled”;
myLoader.load();
I have tacked this at the bottom to no effect…
if (_framesloaded>=_totalframes) {
gotoAndPlay (2);
} else {
gotoAndPlay (1);
}
But I suspect that I’m on the right track???
Anyone with a clue would be most welcome, having spent way too much time with silly errors so far!
Thanks
Fio