A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: 1099 Error that makes no sense

Threaded View

  1. #3
    Member
    Join Date
    Feb 2006
    Location
    San Francisco, CA
    Posts
    65
    Quote Originally Posted by Lumablue View Post
    Hi Adam- Did you ever find a solution to this issue. I am suffering from the exact same thing/exact error message.

    Thanks
    If I'm not mistaken, the problem in the original post has to do with the lack of an object reference in the event handler. For instance:

    Code:
    watch.addEventListener(MouseEvent.MOUSE_DOWN, watchlink);
    
    function watchlink(evt:MouseEvent):void {
           whichMovieClip.gotoAndStop("watch");
    }
    instead of

    Code:
    watch.addEventListener(MouseEvent.MOUSE_DOWN, watchlink);
    
    function watchlink(evt:MouseEvent):void {
           gotoAndStop("watch");
    }
    Last edited by TheDevilRidesIn; 07-24-2010 at 02:32 PM.
    "If, he thought to himself, such a machine is a virtual impossibility, then it must logically be a finite improbability."

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center