// 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"; button_mc.addEventListener(MouseEvent.CLICK, onClick); function onClick(event:MouseEvent):void { var urlRequest:URLRequest = new URLRequest(url); navigateToURL(urlRequest); } button_mc.buttonMode = true;