views:

40

answers:

1

Ok, so could someone tell me what's wrong with this script?

stop();

Start_Game.addEventListener(MouseEvent.CLICK, Start_function);

function Start_function(e:Event){ gotoAndPlay("Question Board"); }

A: 

stop();

Start_Game.addEventListener(MouseEvent.CLICK, Start_function);

function Start_function(e:MouseEvent){ gotoAndPlay("Question Board"); }

Instead of e:Event, write e:MouseEvent.

redconservatory