Hi all
I’m relatively new to Flash but can anybody help me with a particular problem I’m having please? Within Adobe Flash Professional CS3 I’ve managed to develop a button that tracks mouse movement; whilst also implementing the ability for the button to skip to a particular frame within the timeline once it is clicked on. My problem that I’ve encountered with this is that in the output console window, when I go to test the file, I keep getting a:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at Experimental5ForCW2MultimediaDesign_fla::MainTimeline/update()
The two scripts that are in my actions layer are:
startbutton.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
function fl_MouseClickHandler(event:MouseEvent):void
{
gotoAndStop(16);
}
stage.addEventListener(Event.ENTER_FRAME, update);
function update(evt:Event):void
{
startbutton.x = stage.mouseX - startbutton.width * 0.3;
startbutton.y = stage.mouseY - startbutton.height * 0.3;
}
AND
stop();
Does anyone know that solution to this issue. Help much appreciated.