/ Published in: ActionScript
Possible parrameters: clickTAG, clickTag, clickthru
if is not defined url use default url "http://www.your-site.com"
http://www.link-to-banner.com/banner.swf?clickTAG=http://www.your-site.com
if is not defined url use default url "http://www.your-site.com"
http://www.link-to-banner.com/banner.swf?clickTAG=http://www.your-site.com
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
on (release) { if (typeof _root.click != "undefined") { getURL(_root.click, "_blank"); } else if (typeof _root.clickTAG != "undefined") { getURL(_root.clickTAG, "_blank"); } else if (typeof _root.clickTag != "undefined") { getURL(_root.clickTag, "_blank"); } else if (typeof _root.clickthru != "undefined") { getURL(_root.clickthru, "_blank"); } else { getURL("http://www.your-site.com",_blank); } }