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 »

AS3 Quickie – Frame Label Events

With Flash Player 11.3 and above, the ability to listen for a frame label event is now included in the runtimes. For example; if you have a MovieClip symbol with a certain set of animation within it, and you have a number of frame labels defined upon the symbol’s timeline… you can now listen for …

AS3 Quickie – Frame Label Events 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 »

CodeBass Article: AS3 Audio Libraries

An article I had written on using a variety of ActionScript and Alchemy-based audio encoding libraries in Flash Player has been published over at CodeBass. Check it out and even play with the demo set from within your web browser. Full source code and links to referenced AS3 libraries is also available. Nice to finally …

CodeBass Article: AS3 Audio Libraries 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 »