Flash CS4, AS3 gotoAndStop/Play not going to scene?

This is my frame code

stop();

btn_play.addEventListener(MouseEvent.CLICK, btnPlay);
function btnPlay(event:MouseEvent):void
{
gotoAndStop("Game",1);
}

The error im getting is this

1067: Implicit coercion of a value of type int to an unrelated type String.

if available I would like it to be gotoAndPlay instead, anything would help at this point!!! PLZZZ!!!
 
Back
Top