flash question
flash question
Out of context: Reply #5
- Started
- Last post
- 7 Responses
- UndoUndo0
var myInt = setInterval(functionName, TineInMIlliseconds)
sets an interval
clearInterval(myInt) clears the interval.
you probably havent set any intervals if you dont know what that is. The best thing to do is to stop any timelines playing when you dont need them by targeting the mcs with animations like _root.myMC.stop()
or stop any onEnterFrame calls with
delete _root.myMC.onEnterFrame(). hope NT lets the code through