How do you make a title screen

I’m making an interactive video and the title screen isn’t working. Instead of waiting to start until the play button is hit the video just plays the 1 frame screen and starts. Can anyone help me with the actionscript. This is what I have:

play_btn.addEventListener(MouseEvent.CLICK, clickPlay);

function clickPlay(event:MouseEvent):void
{
play_btn.gotoAndPlay(“star”);
}

I have the first scene labeled “star” btw.