The link is not working. Animate and Canvas
Hi
I have a movie clilp with 3 frames.
The first and the second are the choises selected.
The third one has 2 butons to select.
When I click on the mc, it goes to the third frame and display the options.
Then when I click in any option, I made changes (this works) and I want the movie click to return to the selected option, but this doesn't work
I have this code:
this.control_mc.addEventListener("click", control_1.bind(this));
function control_1() {
this.control_mc.gotoAndStop("select"); //this is working with no problems
}
this.control_mc.manual_btn.addEventListener("click", manual_sel.bind(this));
function manual_sel() {
this.control_mc.gotoAndStop("manual"); //Here I have few more lines that works as well, but the control_mc doesn't go to "manual"
}
Any idea?
Thank you
