Analytics for a clean AS3 Adobe AIR project for mobile?

For many years I have been digging around looking for a method for analytic tracking in a clean AS3 Adobe AIR project for mobile devices. Anyone have a solution?

I tried looking at gaforflash http://code.google.com/p/gaforflash/ but it looks like AIR is not supported: http://code.google.com/p/gaforflash/wiki/Roadmap (see comments)

I tried looking at http://www.appanalyticshq.com/ But it depends on Flex. http://getsatisfaction.com/app_analytics/topics/where_can_i_get_a_flash_pro_swc

I also looked directly at Google Analytics http://code.google.com/apis/analytics/docs/tracking/home.html But it says on this page: http://code.google.com/apis/analytics/docs /tracking/flashTrackingIntro.html "Note: Flash tracking is currently available for any Flash content embedded in a web page. Tracking data sent from Adobe Air, Shockwave or using the Flash IDE (for example, using a test movie) in not currently supported. "

Is there anything else out there? Has anyone got this to work?

+4
source share
3 answers

Thanks to Eugene and pkyeck.

I managed to get GA to work with my project, and I confirmed that it works with both iphones and Android.

See this example: http://code.google.com/p/gaforflash/

+1
source

you can get free google analytics analytics from http://www.devactionscript.com/ . This is based on the latest Google Analytics v3 SDK

+1
source

you may consider gaforflash obsolete and obsolete

there is a new library
Google Universal Analytics for ActionScript 3.0

as3-universal-analytics v0.8

https://github.com/zwetan/as3-universal-analytics/releases/tag/0.8

full support: Flash Player, AIR, Redtamarin
It works everywhere or almost everywhere :)

eg

var config:Configuration = new Configuration(); config.forcePOST = true; var tracker:WebTracker = new WebTracker( "UA-12345-67", config ); tracker.pageview( "/hello/world", "Hello World" ); 
0
source

All Articles