YouTube Flash 横幅 AdWords
我应该使用 adWords 为 youtube 创建一个 Flash 横幅。
根据这些规范
我需要
根据有关 clickTags 的指南
发布 Flash Player 4 的横幅http://www.flashclicktag.com/
包含以下代码的横幅时出现问题
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 规则。
那么 - 正确的方法是什么?
I'm supposed to create a flash banner for youtube using adWords.
According to these specifications
I am required to publish the banner for flash player 4.
according to this guide about clickTags
there is a problem when a banner with the following code
on (release) {
if (_root.clickTAG.substr(0,5) == "http:") {
getURL(_root.clickTAG, "_blank");
}
}
is published for flash player 7 or below, but played in flash player 10 in internet explorer (according to the guide, the internet explorer will block the ad as a pop-up).
The suggested workarround for this case is to use "_top" instead of "_blank". however, this would open the link in the same tab instead of a new one and i'm quite sure that's against the adWords rules.
So - what's the propper way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在我工作的代理机构中制作了很多 Flash 广告,我的建议是尽可能严格遵守发布商提供的指南。不这样做只会让人头疼——他们会戳你的横幅,直到发现问题为止,而你最终不得不恢复。
此外,出版商通常会实施 JavaScript 来解决此类问题。
I do a lot of flash advertisements in the agency that I'm working for and my piece of advice is to just stick as strictly with the guidelines provided by the publisher as possible. Not doing so is just a massive headache - they'll prod your banner until they find something wrong and you'll end up having to revert anyway.
Also, often the publisher will implement JavaScript that combats issues like this anyway.