Flash Ad Requirements
Flash Versions: Up through Flash 10
Frame Rate: Must be no more than 18fps File Size: Cannot exceed 50K Animation: 30 seconds maximum Backup gifs must be submitted Click Tracking: The author of the Flash source file (.fla) has to assign a clickTag variable using a getURL button action. They also have to make sure that they have selected _blank for a target so it opens in a new window. A helpful link: Tracking Macromedia Flash Movies The button action code should look like one of these examples: on (release) { getURL(clickTAG,"_blank") } on (release) { getURL(_level0.clickTAG,"_blank") } on (release) { if (clickTag.substr(0,5) == "http:") { getURL(clickTAG,"_blank") } } Link_1.addEventListener(MouseEvent.MOUSE_UP, clicker); function clicker(event: MouseEvent):void { var sURL: String; if ((sURL = root.loaderInfo.parameters.clickTAG)) { navigateToURL(new URLRequest(sURL), "_blank"); } } |