适用于移动项目的纯 AS3 Adob​​e AIR 分析?

发布于 2024-11-26 14:34:17 字数 1161 浏览 4 评论 0原文

我已经研究了几天,寻找一种在纯 AS3 Adob​​e AIR for mobile 项目中进行分析跟踪的方法。有人有解决办法吗?

我尝试查看 gaforflash http://code.google.com/p/gaforflash/ 但似乎不支持 AIR: http://code.google.com/p/gaforflash/wiki/Roadmap (参见评论)

我尝试查看 http://www.appanalyticshq.com/ 但这看起来依赖于 Flex。 http://getsatisfaction.com/app_analytics/topics/where_can_i_get_a_flash_pro_swc

我还直接查看了 Google Analytics(分析) <一href="http://code.google.com/apis/analytics/docs/tracking/home.html" rel="nofollow">http://code.google.com/apis/analytics/docs/tracking/home .html 但此页面上显示:http://code.google.com/ apis/analytics/docs/tracking/flashTrackingIntro.html “注意:目前,Flash 跟踪可用于嵌入网页中的任何 Flash 内容。目前不支持跟踪从 Adob​​e Air、Shockwave 或通过 Flash IDE(例如使用测试影片)发送的数据。”

还有什么吗?有人让这个工作吗?

I've been digging around for days looking for a way to do analytic tracking in a pure AS3 Adobe AIR for mobile project. Does anyone have a solution?

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

I've tried looking at http://www.appanalyticshq.com/
But this looks to be Flex dependent.
http://getsatisfaction.com/app_analytics/topics/where_can_i_get_a_flash_pro_swc

I also looked at straight up 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: Currently, Flash tracking is available for any Flash content embedded in a web page. Tracking of data sent from Adobe Air, Shockwave, or via the Flash IDE (e.g. using Test Movie) is not supported at this time."

Anything else out there? Has anyone got this to work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

很酷又爱笑 2024-12-03 14:34:17

感谢 Jevgenij 和 pkyeck。

我能够让 GA 处理我的项目,并且我验证它可以在 iPhone 和 Android 上运行。

请参阅以下示例:http://code.google.com/p/gaforflash/

Thank Jevgenij and pkyeck.

I was able to get GA working with my project and I verified it is working on both iphones and on Android.

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

菊凝晚露 2024-12-03 14:34:17

您可以从 http://www.devactionscript.com/ 获取免费的 Google Analytics ane。这个是基于最新的Google Analytics SDK v3

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

淡看悲欢离合 2024-12-03 14:34:17

您可以认为 gaforflash 已过时并且遗留

有一个新库
Google Universal Analytics for ActionScript 3.0

as3-universal-analytics v0.8

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

完全支持:Flash Player、AIR、Redtamarin
它可以在任何地方或几乎任何地方工作:)

例如,

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

you can consider gaforflash obsolete and legacy

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 for: Flash Player, AIR, Redtamarin
it just works everywhere or almost everywhere :)

for example

var config:Configuration = new Configuration();
    config.forcePOST = true;
var tracker:WebTracker = new WebTracker( "UA-12345-67", config );
    tracker.pageview( "/hello/world", "Hello World" );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文