我应该使用 adWords 为 youtube 创建一个 Flash 横幅。
根据这些规范
我需要发布 Flash Player 4 的横幅。
根据this guide about clickTags
带有以下代码的横幅时出现问题
on (release) {
if (_root.clickTAG.substr(0,5) == "http:") {
getURL(_root.clickTAG, "_blank");
}
}
为 Flash Player 7 或更低版本发布,但在 Internet Explorer 中的 Flash Player 10 中播放(根据指南,Internet Explorer 将阻止广告作为弹出窗口)。
对于这种情况,建议的解决方法是使用“_top”而不是“_blank”。但是,这会在同一个标签而不是新标签中打开链接,我很确定这违反了 adWords 规则。
那么 - 这样做的正确方法是什么?