Skip to content

Instantly share code, notes, and snippets.

@jaidetree
Forked from anonymous/gist:5670671
Last active December 17, 2015 20:49
Show Gist options
  • Save jaidetree/5670693 to your computer and use it in GitHub Desktop.
Save jaidetree/5670693 to your computer and use it in GitHub Desktop.
if (root.loaderInfo.parameters.clickTAG.substr(0,5) == "http:") {
// Add more button instances here
ClickHotspot.addEventListener( MouseEvent.CLICK, clickTagHandler);
// If within a movie clip
// movieClipInstanceName.buttonInstanceName.addEventListener(MouseEvent.CLICK, clickTagHandler);
}
function clickTagHandler(e:MouseEvent):void {
navigateToURL(new URLRequest(root.loaderInfo.parameters.clickTAG), "_blank");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment