Forum Moderators: open
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)
Can someone advise plese?