Flash Ad Requirements
Flash Versions: Up through Flash 9
Frame Rate: Must be no more than 18fps
File Size: Cannot exceed 40K
Animation: 15 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
Frame Rate: Must be no more than 18fps
File Size: Cannot exceed 40K
Animation: 15 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")
}
}
on (release) {
getURL(clickTag,"_blank")
}
on (release) {
getURL(_level0.clickTag,"_blank")
}
on (release) {
if (clickTag.substr(0,5) == "http:") {
getURL(clickTag,"_blank")
}
}


