Button insise Movie Clip
Hy!
So i made navigation with movie clip and inside are buttons.
And now I want to go with buttons to the other scenes.
I use Code Snipets but I dont know where to paste.
When I put the code inside the button he always go back to the first scene and that is not a scene i want to.
btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_14);
function fl_ClickToGoToScene_14(event:MouseEvent):void
{
MovieClip(this.root).gotoAndPlay(1, "Scene 3");
}
he always go back to Scene 1.
Can someone help me please?