i made a button if you rollover on it it’s size is larger
i want if you roll out on it it’s size return back to it’s original size
i use this function prevFrame
but my problem is when i use it
it stops on the previous frame only
and i want to stop from the starting
i made a button if you rollover on it it’s size is larger i
Share
You can label your frames an use the gotoAndStop() method
function onRollover(event:MouseEvent):void { gotoAndStop('largeSize'); } function onRollOut(event:MouseEvent):void { gotoAndStop('normalSize'); }