View Mode: Normal | Article List

Google Analytics Tracking For Adobe Flash

[ 2009-08-11 21:13:15 | Author: liuhuan ]
Google Analytics is a kind of strong tool for us to track the website traffic data. However, we could only use it in html. Is it possible that we track down the data in google analytics when user refreshing "pages" in flash? Fortunatly, there comes an ActionScript 3 API for Google Analytics data collection(http://code.google.com/p/gaforflash/).

download: http://code.google.com/p/gaforflash/downloads/list

Hot pot

[ 2009-08-03 21:02:59 | Author: liuhuan ]
uploads/200908/10_203354_img_1816.jpg

Google Maps API for Flash Developer

[ 2009-08-01 22:45:31 | Author: liuhuan ]
http://code.google.com/apis/maps/

The Google Maps API lets you embed Google Maps in your own web pages with JavaScript. The API provides a number of utilities for manipulating maps (just like on the http://maps.google.com web page) and adding content to the map through a variety of services, allowing you to create robust maps applications on your website.

Efflex: Effects for Flex

[ 2009-08-01 22:43:04 | Author: liuhuan ]
We know that Flex is strong in code developing while weak in effects and animations. Luckily, Efflex enables us to add various effects in Flex.
http://www.efflex.org/

current version is v0.03.
Download url: http://code.google.com/p/efflex/downloads/list

example: http://www.efflex.org/EfflexExplorer.html

Fullscreen Flash (as3)

[ 2009-06-30 16:34:42 | Author: liuhuan ]
Remind that the displayState should only be changed when there's any keyboard or mouse input in flash.
mDisplayStateSwitcher.addEventListener(MouseEvent.MOUSE_DOWN,toggleSwitch);

function toggleSwitch(e:MouseEvent):void {
  if (stage.displayState == "normal") {
    stage.displayState="fullScreen";
  } else {
    stage.displayState="normal";
  }
}