problem with button and zoom on canvas
hello ... I am working on a canvas project .. the project consists of an interactive map WITH ZOOM .. I have the symbol "map", inside this symbol I have the map and 2 buttons
button 1: go to frame 15
button 2: return to frame 1
the problem is that the zoom is superimposed on me with the buttons. The buttons are hidden ... when I go to frame 15 it shows me some special routes
I would like to take out the buttons of the "map" symbol and place it in the main scene
the problem
being the button 1 in the main scene I do not know how to take me to frame 15 of the "map" symbol
this code works if the button is inside the map symbol, but it does not work if the buttons are in the main scene, outside the map symbol
this.btn_boton1.addEventListener ("click", fl_ClickToGoToAndStopAtFrame_2.bind (this));
function fl_ClickToGoToAndStopAtFrame_2 ()
{
this.gotoAndStop (15);
}
this.btn_boton2.addEventListener ("click", fl_ClickToGoToAndStopAtFrame_3.bind (this));
function fl_ClickToGoToAndStopAtFrame_3 ()
{
this.gotoAndStop (1);
}
