onClipEvent (enterFrame) {
this._x += 10;
this._y += 10;
}
Would it be possible to add in a function like this:onClipEvent (enterFrame) {
this._x += 10;
this._y += 10;
[i]wait(number of milliseconds);[/i]
}
Thanks for any help.
Posted 25 March 2006 - 10:46 AM
onClipEvent (enterFrame) {
this._x += 10;
this._y += 10;
}
Would it be possible to add in a function like this:onClipEvent (enterFrame) {
this._x += 10;
this._y += 10;
[i]wait(number of milliseconds);[/i]
}
Posted 25 March 2006 - 11:33 AM
myFunctionsName = function(){
myCode
}
myIntervalID = setInterval(myFunctionsName,200);
clearInterval(myIntervalID)
Posted 26 March 2006 - 09:05 AM
0 members, 1 guests, 0 anonymous users