Advertising
ADVERTISING SPECIFICATIONS
If you are interested in advertising with us or for more information, please contact Joshua Derman, Manager, Business Development
Ad Banners | Homepage Prestital | Mobile & Tablet App | e-Newsletter | Flash Ad Requirements | Programming Language For Adobe Flash
Ad Banners
Medium Rectangle Dimensions |
Width: 300px; Height: 250px |
Pencil Ad Dimensions |
Width: 900px; Height: 60px |
Long Rectangle Dimensions | Width: 1200px; Height: 90px |
Medium Rectangle Dimensions | Width: 728; Height: 90 |
Small Rectangle Dimensions | Width: 300 px Height: 125px |
Mobile Site Dimension | Width: 480 Height: 50 *This is only a jpg or gif file* |
Formats Accepted | GIF, JPG, Flash (SWF) (Flash ads need to have click tags implemented) |
Maximum Weight | 40k |
Alternate Text | 30 characters |
Third Party Ad Serving | Yes |
Maximum Animation Frame Rate | 18 frames per second |
Maximum Animation Length | 10 seconds, 3 loops |
Additional Notes | Animated files must be accompanied by a static backup image |
*CLICK-THROUGH URL REQUIRED* |
Homepage Prestital (Overlay)
Details | Ability to run on all Team USA Network for 24-hour period. Will close after 5 seconds. |
Dimensions |
Width: 860px; Height: 475px |
Formats Accepted | GIF, JPG, FLASH (SWF) (flash ads need to have click tags implemented) |
Maximum Weight | 100K |
Alternate Text | 30 characters |
Third Party Ad Serving | No |
Maximum Animation Frame Rate | 18 frames per second |
Maximum Animation Length | 10 seconds |
Additional Notes | Animated files must be accompanied by a static backup image |
No video permitted | |
*CLICK-THROUGH URL REQUIRED* |
Mobile & Tablet App
Mobile |
Width: 320px; Height: 50px |
Tablet |
Width: 728px; Height: 90px |
Formats Accepted | Static JPEG, GIF |
Maximum Weight | 40K |
Alternate Text | 30 characters |
*CLICK-THROUGH URL REQUIRED* |
e-Newsletter
e-Newsletter Dimensions | Width: 180px; Height: 150px |
Formats Accepted | Static JPEG |
Maximum Weight | 40K |
Alternate Text | 30 characters |
*CLICK-THROUGH URL REQUIRED* |
Flash Ad Requirements
- File names: All lower case characters without ampersands (&), asterisks (*), slashes (/) spaces, or question marks (?).
- We don't accept Flash 10.2 or higher SWF files because most users can't yet view them. All flash files must be version 10.1 or lower
- Keep in mind that in the latest version of the Flash developer tool, Flash CS 5.5, Flash 10.2 is the default SWF file type.
- getURL actions:
- The URL should be _level0.clickTAG. The ad server will only recognize the standard casing of "clickTAG" for the variable name (not "ClickTag" or "clicktag", for example).
- Set the URL for an expression.
- Set the target window to either _blank (to open a new window) or _top (to open in the same window).
- If you set the target window to _top, you must change the allow sciptaccess variable in the creative code to 'always', otherwise your creative won't be clickable.
- Creatives with hardcoded URLs don’t click-through in DFP
Programming Language For Adobe Flash
ActionScript 2
Create a button on your Flash movie and use getURL() to specify the clickTAG:on (release) {
getURL (_level0.clickTAG, "_blank");
}
ActionScript 3
If you use the example below, change 'Link_1' to the instance name of your clickTAG button:Link_1.addEventListener(MouseEvent.MOUSE_UP, function(event: MouseEvent): void {
var sURL: String;
if ((sURL = root.loaderInfo.parameters.clickTAG)) {
navigateToURL(new URLRequest(sURL), "_blank");