in the tutorial -> “Percentage Preloader with Load Bar: by Shane Waldeck aka Lostinbeta” you feature how to make it play into the next frame. i would like to know if it can jump to play the next layer as i am unable to add another effect after it loads
*Originally posted by shadow4m *
**in the tutorial -> “Percentage Preloader with Load Bar: by Shane Waldeck aka Lostinbeta” you feature how to make it play into the next frame. i would like to know if it can jump to play the next layer as i am unable to add another effect after it loads **
next layer? what do you mean?
the tutorial is at: http://www.kirupa.com/developer/mx/percentagepreloader.htm
in the last layer (actions) and where the first frame actions is:
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent100;
this.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
and the 2nd frame’s actions is:
this.gotoAndPlay(1);
what i’d like to know is am i able to force it to play my new ‘effect’ after the actions layers cause i cant add a new effect on frame 3 of the actions layer cause it doesnt work for some unknown reason :-\
you can make what ever you want on frame 3, make a new layer and make sure to add a stop
add a stop(); where?:pa:
on frame 3