Movie Clip Timeline to Main Timeline (Canvas)
Hello,
I have a button in a movie clip Timeline.
When I click on this button contained in a symbol, I would like to go to a specific place in the main timeline.
For the moment, I can not find the code that allows me to navigate easily with the main timeline when I'm in a symbol
Here are the codes I tried
this.BtClose1.addEventListener("click", fl_ClickToGoToAndStopAtFrame_7.bind(this));
function fl_ClickToGoToAndStopAtFrame_7()
{
_parent.gotoAndPlay(60);
}
-------------------------------------------------------
this.BtClose1.addEventListener("click", fl_ClickToGoToAndStopAtFrame_7.bind(this));
function fl_ClickToGoToAndStopAtFrame_7()
{
_root.gotoAndPlay(60);
}
---------------------------------------------------------
I hope someone could help me.
thank you in advance
