Google Analytics(分析)可以跟踪 AdWords Flash 横幅中的自定义事件吗?
我知道它可以跟踪来自其他网络上的其他 Flash 横幅/站点的 Flash 事件。 但可以从 AdWords 获得吗?
我找到了这段代码:
on (release) {
// Track with no action
getURL("javascript:pageTracker._trackPageview('/folder/file.html');");
}
但它似乎需要页面上有一个JS脚本。
AdWords 如何处理这个问题?
谢谢
-艺术
i know it can track flash events from other flash banners/sites on other networks..
but can it from Adwords?
i found this code:
on (release) {
// Track with no action
getURL("javascript:pageTracker._trackPageview('/folder/file.html');");
}
but it seems to require a JS script on the page.
how does Adwords handle this?
thanks
-art
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试此操作并将横幅上传到 AdWords 应该相当容易,但以下内容似乎暗示不允许这样做
http://adwords.google.com/support/aw/bin/static.py?hl=zh-CN&page =guide.cs&guide=28427&topic=28431
“额外调用:您的广告代码无法对其他 JavaScript 或其他功能进行外部服务器调用。所有功能都必须本地化为代码本身。”
此外,如果您愿意要在 Flash 中使用 Google Analytics,请参阅以下文档:
http:// code.google.com/apis/analytics/docs/tracking/flashTrackingIntro.html
(在您的情况下,听起来桥接模式就是您正在寻找的模式)。
It should be fairly easy to try this and upload a banner to AdWords, but the following seems to imply that this is not allowed
http://adwords.google.com/support/aw/bin/static.py?hl=en&page=guide.cs&guide=28427&topic=28431
"Extra calls: Your ad code cannot make external server calls for additional JavaScript or other functionality. All functionality must be localized to the code itself. "
Also if you want to use Google Analytics within Flash, refer to the following documentation :
http://code.google.com/apis/analytics/docs/tracking/flashTrackingIntro.html
(in your case it sounds like Bridge mode is what you are looking for).