i keep getting this error no matter how i change the code. i am simply trying to make an animated button that links to an external website.
TypeError: Error #1009: Cannot access a property or method of a null object reference.
here is my as3 code
var link:URLRequest = new URLRequest("http://www.adobe.com");
pure.addEventListener(MouseEvent.CLICK, onClick);
function onClick(event:MouseEvent):void {
navigateToURL(link);
}
thanks in advance for any help