delete enterFrame
onClipEvent(load){
var count = 0;
this.onEnterFrame = function(){
count++;
trace("count :"+count)
if(count == 20){
//this.onEnterFrame = null;
delete this.onEnterFrame;
}
}
}
onClipEvent(load){
var count = 0;
this.onEnterFrame = function(){
count++;
trace("count :"+count)
if(count == 20){
//this.onEnterFrame = null;
delete this.onEnterFrame;
}
}
}
No comments:
Post a Comment