barge
November 12, 2003, 2:10am
1
OK I have a preloader in a external movie, it works fine when I preview the single .swf, but when I try to preview it as a external movie being loaded, the preloader doesn’t work, it justs stays there and never loads the movie. Thanks in advance. I would post the .fla but it’s too large.
Here is the actionscript I used:
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent100;
_root.loadText = Math.round(getPercent 100)+" percent";
if (bytes_loaded == bytes_total) {
_root.gotoAndStop(3);
}
system
November 12, 2003, 2:30am
2
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+" percent";
if (bytes_loaded == bytes_total) {
this.gotoAndStop(3);
}
system
November 12, 2003, 2:50am
3
I tried that and it didn’t work. Do you think I have to upload them? Thanks.
system
November 12, 2003, 3:04am
5
Ok now it loads, the bar works perfectly, but…
when it gets to 100 it just stays, When I preview just the .swf, it works fine, whats wrong? Thanks.
system
November 12, 2003, 3:08am
6
What you mean by stays? Have you tried using gotoAndPlay?