Flash Click ActionScript 2 Guideline
The below ActionScript 2 guideline is for use with Flash version 8 or above
on(release)
{
getURL (_level0.clickTAG, “_blank”);
}
This must be defined as being on a button instance. The clickTAG variable is case-sensitive and must be specified as “clickTAG”.
Most publishers accept Flash Version 8. However, Flash Version 8 is case sensitive. When publishing in Flash Version 8, the Click Action must exactly match the Publisher’s case specification when site-serving (utilising FFA’s 1×1 pixel tracking or click tracking).
Please refer to Publisher’s Specifications for more information.
Flash Click ActionScript 3 Guideline
[Button's instance name].addEventListener(MouseEvent.CLICK, onMouseClick);
function onMouseClick(e:MouseEvent):void {
getDestURL(LoaderInfo(root.loaderInfo).parameters.clickTAG, “_blank”);
}
function getDestURL(url:String,window:String):void {
ExternalInterface.call(‘window.open(“‘ + url + ‘”,”‘ + window + ‘”)’);
}
See Flash Creative Instructions
See Creative Naming Conventions
For agencies wanting to use more advanced scripts, Facilitate Digital recommend contacting the booked Publisher to confirm accepatance.