// Author: Robert Lie (Mobilefish.com) // More information, see: https://www.mobilefish.com/developer/flash/flash_quickguide_actionscript_3_examples.html var url:String = "https://www.mobilefish.com/developer/flash/flash_quickguide_actionscript_3_examples.html"; click_btn.addEventListener(MouseEvent.CLICK, onClick); click_btn.addEventListener(MouseEvent.ROLL_OVER, buttonOver); click_btn.addEventListener(MouseEvent.ROLL_OUT, buttonOut); function onClick(event:MouseEvent):void { var urlRequest:URLRequest = new URLRequest(url); navigateToURL(urlRequest); } function buttonOver(event:MouseEvent):void { event.target.alpha = .5; } function buttonOut(event:MouseEvent):void { event.target.alpha = 1; }