Not really resolved, just giving up ;)
Printable View
Not really resolved, just giving up ;)
It is fairly simple to add clicktag to a banner, all you need to do is make an invisible movieclip on your top layer, and assign the following actionscript (AS2) onto it:
on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL(clickTAG);
}
}
Thank you LG; the problem was that the code I was to add (atop the invisible button you mention) was dictated to me:
on(release){
getURL(_level0.clickTag, "_blank");}
Of course, this inactivates the button BELOW that (rollover and link is no longer effective) and the banner now drives to a 404 error. After reading countless posts and forums here and elsewhere, it seems this will always happen unless there's a corresponding bit of ClickTag code in the HTML the flash sits in. I don't know if that much is true or not; it's just what I'm hoping. In any event, I'm tired of researching it for now! I think your code is the "better" example, because I keep seeing it in other posts of this kind on the Internetz. I thank you very much for your kind assistance!