简体   繁体   中英

Google analytics track event causing page to change

I have a flash file and am using google's suggested method for as2 event tracking like so:

getURL("javascript:pageTracker._trackEvent('Refferal', 'Join', 'Benefits for HCAs/APs');");

The problem is that instead of silently communicating, pageTracker._trackEvent() appears to return a boolean value. Every time I click the button which this is located on I leave the page I was on and end up on a page that just contains the word "true".

Does anyone know how to get around this? It makes the flash unusable.

If your flash is embedded in a web page, you could call a javascript function and let it handle the call to analytics using an external interface:

ExternalInterface.call("myJavaScriptFunction", parameter1, parameter2); ( http://geekswithblogs.net/Mikeymac/archive/2006/03/13/72170.aspx )

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM