Question
Removing the onRelease function of a movieClip
I have a movie clip on stage and am giving it the
functionality of a button via actionscript:
col1_mc.onRelease = function() {
_parent.loadPlan(this, this._parent)
};
The function loadPlan() tells the calling movieClip to play. On frame 10 of the calling movie clip are further movie clips with their own functionality, but when I go to click on one of these the parent clip's function is triggered.
How can i overcome this problem?
Thanks
col1_mc.onRelease = function() {
_parent.loadPlan(this, this._parent)
};
The function loadPlan() tells the calling movieClip to play. On frame 10 of the calling movie clip are further movie clips with their own functionality, but when I go to click on one of these the parent clip's function is triggered.
How can i overcome this problem?
Thanks