hello All. I use to do this on AS2 code.
this.pause3Seconds = function () {
trace(_global.something(_root.somthing));
clearInterval(myInt);
};
var myInt = setInterval(this, "pause3Seconds", 3000);
Now trying to worked out this into a class.as file got all type of migration errors and warning.
So here I'm. anybody know how this can be done within a class.as AS3 way file ?
I'm not working from timelines. ( frames )
John