Flash banner need to be prepared with a clickTAG parameter that collects the intended target URL of the banner and redirects the user there upon click. To check that your creative has proper clickTAG support, visit http://adopstools.net/ and upload the creative.
ASX support multiple clickTAGs, enter them in "View / Edit targets" on the banner edit view.
ActionScript 3.0
Note that adopstools.net cannot (yet) detect clickTAGs, however adopstools.net shows the code of the flash-file in question and usually an AS3 clickTAG can be found from the "Dumping Code"-section. Search for "clicktag" (see the image for an example of a clickTAG implementation).
ClickTAG implementation
Given a button with instance name clickButton.
ActionScript 2.0
clickButton.onRelease = function() {
getURL(_root.clickTAG, '_blank');
}
or directly on the top level button
on (release) {
getURL(_root.clickTAG, '_blank');
}
ActionScript 3.0
clickButton.addEventListener(MouseEvent.CLICK, function() {
if (root.loaderInfo.parameters.clickTag) {
navigateToURL(new URLRequest(root.loaderInfo.parameters.clickTag),"_blank");
}
}
Comments
0 comments
Article is closed for comments.