This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Script for a clickale button in AS3 | |
*/ | |
var paramList:Object = this.root.loaderInfo.parameters; | |
// FYI, buttonClip is a symbol | |
buttonClip.addEventListener(MouseEvent.CLICK, openURL); | |
function openURL(evtObj:MouseEvent):void { |
NewerOlder