ClickTAG flash CS4/MX/CS3 action script (AS1, AS2)
VIDEO: how to put clickTAG in CS4 Flash version
Most common clickTAG version:
on (release) {
getURL (_root.clickTAG, “_blank”);
}
clickTag version:
on (release) {
getURL (_root.clickTag, “_blank”);
}
clicktag version:
on (release) {
getURL (_root.clicktag, “_blank”);
}
For advanced flash user:
_root prefix – because clickTAG is set in root level, using root you are safe in case you use button in other movieclip or level.
Always use on (release) - because on(press) will be blocked by browser
“_blank” - most requirements notes blank as default rule. If you have free of choice – use blank when ad is served on other site then landing page. But you can use “_self” if ad directs to same domain (inner ad-campaign)






