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('/som开发者_如何学Cebannerad');");
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
Try this: http://doteduguru.com/id1313-google-analytics-tracking-flash.html
精彩评论