Thread: buttons
View Single Post

  #15 (permalink)  
Old 19-08-08, 16:32
zmatt zmatt is offline
Junior Member
 
Join Date: Aug 2008
Posts: 1
Rep Power: 0
zmatt is on a distinguished road
Re: buttons

Thats the code i use to navigate around the timeline seems to work pretty well

Code:
stop();
BUTTONINSTANCE.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler999);
function mouseDownHandler999(event:MouseEvent):void {
  
gotoAndStop(3);
}
Reply With Quote