actionscript3 Category

Flash AS3 Links Made Easy – AS3 Link Class – Download
July 18th, 2010 by moonpixel

Many times when creating banners with multiple clickable areas, it’s a pain to do an event listener for each and a function to navigate to that particular URL.

var link = new Link(obj:DisplayObject,lnk:String,trgt:String);

I needed something faster and created a “dead simple” as3 link class, which allows creating as3 links in 1 line. You can download the class [...]

Flash – Add Path to Your Classes – AS3 Classpath
July 18th, 2010 by moonpixel

When using Flash regularly, as with any other software, there are tasks repeating in many projects over and over again. To speed up this process, it just makes sense creating your own classes and functions and having them available for all projects to use.
So how do we do this?
In order to have a class accessible [...]

Resize Text Field – AS3 Draggable Resizable Input Text Field
December 17th, 2009 by moonpixel

Draggable, resizable Input Text Field with Actionscript 3. Text Field gets resized in particular direction by dragging one of its corner handles.