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:
instead ofCode:watch.addEventListener(MouseEvent.MOUSE_DOWN, watchlink); function watchlink(evt:MouseEvent):void { whichMovieClip.gotoAndStop("watch"); }
Code:watch.addEventListener(MouseEvent.MOUSE_DOWN, watchlink); function watchlink(evt:MouseEvent):void { gotoAndStop("watch"); }





Reply With Quote
