Skip to content

Instantly share code, notes, and snippets.

@xtrasmal
Created January 27, 2013 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xtrasmal/4648608 to your computer and use it in GitHub Desktop.
Save xtrasmal/4648608 to your computer and use it in GitHub Desktop.
AS3 Clicktag Flashvar. Making a commercial banner with ClickTag. usage create a flashvar named ClickTag
/* Xander Smalbil */
var paramList:Object=this.root.loaderInfo.parameters;
clickme.addEventListener(MouseEvent.CLICK, openURL);
function openURL(evtObj:MouseEvent):void
{
var request:URLRequest = new URLRequest(paramList["ClickTag"]);
navigateToURL(request, "_blank");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment