I’ve got an interval that I can’t clear.
The interval is set in a swf that i’m loading into a mc. The interval targets a function that is sitting in a navigation menu off of the root.
so when i set the interval, i’m using:
autoSwitch = setInterval (this._parent.menuContainer_mc.menuSwitch, 3000);
//where menuSwitch is the targeted function.
then when i want to clear it, i’m adding this to the last line of the menuSwitch function that the interval is calling:
clearInterval(this._parent.containerClip.autoSwitch);
It sets just fine but I can’t clear it.