Friday, 3 August 2012

How to delete onClipEvent enterFrame

delete enterFrame


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