Im new to AS3 and just want to get my button (labled button1 in the properties instance box) to move me onto the next frame in the timeline(frame labled start) and play from there, when you hover over it .
Button is on first frame on a different layer to actions & labled frames.
this is the code Ive copied and adapted from a tutorial its in the first keyframe on the action layer…
stop();
button1.AddEventListener(MouseEvent.MOUSE_OVER, mouse_overbutton1);
function mouse_overbutton1 (event:EVENT) :void
{
gotoAndPlay (“start”)}
is there something else I need to do as error report tells me:
1046: Type was not found or was not a compile-time constant: EVENT.
its going to be a BIG learn this beasty!!!