FLASH - how long is a piece of string?
FLASH - how long is a piece of string?
Out of context: Reply #5
- Started
- Last post
- 7 Responses
- krust0
i'm actually using onEnterFrame alot... e.g...
this.onEnterFrame = function() {
myClip._visible = false;
var bytesLoaded = myClip.getBytesLoaded();
var bytesTotal = myClip.getBytesTotal();
if (bytesLoaded>=bytesTotal && bytesTotal>100) {
tn_on.gotoAndStop(5);
x_load.play();
if (x_load._totalframes == x_load._currentframe) {
myClip._visible = true;
x_load.gotoAndStop(13);
unloadMovie(mc_x.getInstanceAtDe...
loadCharacterDescription(lastTra...
text02.gotoAndStop(2);
delete this.onEnterFrame;
}
}
};should i be doing something else?