Forum Moderators: open
Hello,
I work for a site where we have banners and need to add the clickTAG link to the initial script. I work with ActionScript 2.0. I was also recommended to propably use the fscommand in order to integrate the clickTAG link in the ActionScript. But then I heard, it will give a double clickTAG result in combination with the getURL. So I tried this which doesn't seem to work neither.
myButton.onRelease = function(){
getURL(clickTAG, "_blank");
};
myButton.onRelease = function() {
if (clickTAG.substr(0, 5) == "http://www.") {
getURL(clickTAG, "_blank"); (or without target)
}
};
(They tell me they could manage the clickTAG link when the banner is in gif or jpeg form as for information)