AS3

AS3 Quickie – drawWithQuality()

Since Flash Player 9, we’ve been able to use the BitmapData.draw() method in order to capture visual data from a display object. The major limitation of using this method, is that it will render the visual at the stage quality with which the swf has been embedded/compiled. One trick to get around this is to […]

AS3 Quickie – drawWithQuality() Read More »

Cookbook Draft is Half-Way Cooked

Yeah- I hit a pretty big milestone this week with the draft for my book on Android and Flash Platform development (the book is still untitled). I’ve submitted 5 chapters and am mid-way through a 6th. This actually places me about a month and a half ahead of schedule, which is pretty darn good. 180

Cookbook Draft is Half-Way Cooked Read More »

ActionScript 3 Google Analytics API

Over on the Google Analytics weblog, they’ve posted about a new (official) AS3 library for GA! Apparently, the library is pretty robust, featuring; Metrics, Dimensions, Filters, Sequenced Pagination, and Data Views. I’ve dealt with Google Analytics and Flash in the past using the Google Analytics Tracking For Adobe Flash ActionScript 3 API which, from my

ActionScript 3 Google Analytics API Read More »

Quick Tip: Display Application Version in your AIR App.

Just a quick tip for those looking to somehow display the AIR application version from the descriptor file. I’ve found it very helpful in troubleshooting is users can say EXACTLY what version of the app they are running. AIR 2.5 and later: private function getAppVersion():String { var appXml:XML = NativeApplication.nativeApplication.applicationDescriptor; var ns:Namespace = appXml.namespace(); var

Quick Tip: Display Application Version in your AIR App. Read More »

Simple AS3 Slideshow Widget: Part 3

This is the final post in a three part tutorial detailing the creation of a Flash slideshow widget using ActionScript 3.0. Have a look over Part 1 and Part 2 before moving ahead. In this post, we are examining the two methods which actually handle image loading and display within our module. private function switchImage(e:TimerEvent):void

Simple AS3 Slideshow Widget: Part 3 Read More »