actionscript 3 - new GoogleAnalytics Asynchronous tracking and Flash ExternalInterface.call -


i'm implementing google analytics on current project.

apparently code has been updated new asynchronous syntiax, old actionscript code doesn't work. http://code.google.com/apis/analytics/docs/tracking/asyncusageguide.html old code

externalinterface.call("pagetracker._trackevent", category,action,label, value); 

can tell me how format above work new asynchronous style of tracking?

try this:

externalinterface.call("_gaq.push(['_trackevent', category,action, opt_label, opt_value])"); 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -