TypeError: Error #1009: Cannot access a property or method of a null object reference.
error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at Untitled_fla::MainTimeline/frame1()[Untitled_fla.MainTimeline::frame1:4]
code:
asdf.addEventListener(MouseEvent.CLICK, onClick);
asdfasdf.addEventListener(MouseEvent.CLICK, onClick);
function onClick(e:MouseEvent):void
{
text1.text = e.target.text
}
asdf is in frame 1
asdfasdf is in frame 2
text1 is in frame 1
how do i get the code to work without causing the error?
