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
download: http://code.google.com/p/gaforflash/downloads/list
Flex 3.0 CSS Properties List
[ 2009-08-04 20:47:33 | Author: liuhuan ]
http://www.loscavio.com/downloads/blog/flex3_css_list/flex3_css_list.htm
online help doc: http://livedocs.adobe.com/flex/3/html/index.html
online help doc: http://livedocs.adobe.com/flex/3/html/index.html
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.
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
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
Design studio pick
[ 2009-07-30 21:22:56 | Author: liuhuan ]
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";
}
}
function toggleSwitch(e:MouseEvent):void {
if (stage.displayState == "normal") {
stage.displayState="fullScreen";
} else {
stage.displayState="normal";
}
}