ActionScript 3 Base Class Framework

Revision History

Current Release

23 February 2015

Previous Releases

26 January 2015

11 November 2014

29 July 2014

8 November 2013

27 September 2013

NOTE:  Take care when redispatching, as the handlers will change the status property of the cloned event object, not the original.  You will need to maintain a reference to the cloned event object, then set the value of the original event object when the cloned event returns.  An example of this is:

function onCanvasLocationStatusRequest(event:LocationStatusRequestEvent):void {
    var clone:LocationStatusRequestEvent = LocationStatusRequestEvent(event.clone());
    this.dispatchEvent(clone);
    event.status = clone.status;
}

17 April 2013

28 January 2013

13 December 2012

BREAKING CHANGE:

The constructor for the AssetData class now takes three optional parameters; the filename, description, and source file notes.  The new constructor takes the source file notes argument third—previously, this was the second argument.

Ensure that any code that creates an AssetData object and passes source file notes into the constructor is updated.

14 August 2012

1 February 2012

27 May 2011

Changes from the 17 March 2011 (Beta) release:

17 March 2011 (Beta)

9 February 2011 (Beta)

4 November 2010 (Beta)

10 September 2010 (Beta)

5 August 2010

Brought to You By


Mike Mustaine (impression@logicdriven.com) is the primary point of contact for the DevKit.  The DevKit includes contributions from the following people:

Your questions and comments are encouraged.  Help us make a better product by sharing your thoughts and ideas with us.