My original code enables me to play another frame once the user has clicked on the object-as seen in the code;
stop();
btn1.addEventListener
(MouseEvent.CLICK, onClick);
function onClick
( event:MouseEvent):void
{
gotoAndPlay("8")
}
However, when i replace gotoAndPlay with 'gotoAndStop' it doesnt work?