error 1010? Undefined property...
I am just having some issues with some simple code, and not exactly sure why. Here is the error I am getting:
TypeError: Error #1010: A term is undefined and has no properties.
at sliSiteUpdate_fla::MainTimeline/aboutOut()
I believe it is asking for the function properties, however, those are specified in the frame as below:
btn_aboutHit.addEventListener (MouseEvent.MOUSE_OUT, aboutOut);
function aboutOut (e:MouseEvent):void{
this.mc_about.gotoAndPlay ("aboutOut")
}
So, I am a bit confused as to what it is actually asking me to do / provide? Thanks.