Flash Ad Requirements
- Flash Versions: Up through Flash 10
- Frame Rate: 18fps max
- File Size: 50K max
- Animation: 30 seconds max
- 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")
}
}


