使用 clickTag 和 Google Analytics 跟踪 Flash 横幅广告
我试图找出是否有一种方法可以使用 clickTag 和 Google Analytics 来跟踪传出横幅点击。 clickTag 代码:
on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL(clickTAG);
}
}
也许有人可以告诉我以下内容是否有效:
on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL("javascript:pageTracker._trackPageview('/somebannerad');");
getURL(clickTAG);
}
}
但我理想地想要一个与标准 clickTag 代码一起使用的解决方案,并且不涉及更改 flash 文件中的任何代码。有人有什么想法吗?
谢谢
I'm trying to find out if there is a way of using clickTag and Google Analytics to track outgoing banner clicks. clickTag code:
on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL(clickTAG);
}
}
Maybe someone can tell me whether the following would work:
on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL("javascript:pageTracker._trackPageview('/somebannerad');");
getURL(clickTAG);
}
}
but I would ideally like a solution that worked with the standard clickTag code and didn't involve changing any code in the flash file. Anyone have any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:http://doteduguru.com/id1313-google-analytics-tracking- flash.html
Try this: http://doteduguru.com/id1313-google-analytics-tracking-flash.html