Category: Development

  • QueryParameters AS3 Class

    Custom class dependencies: Parameters QueryParameters is a utility that is meant for working with query strings in Actionscript. It extends the extremely versatile Parameters class, and what it does is fairly simple, yet very useful. It is an object which is automatically converted to a query string. All methods which add/remove properties are overridden to…

  • Parameters AS3 Class

    Custom class dependencies: None This class can be described best as an indexed Object. This means that all the properties may also be accessed through an index, as well as directly calling the property name. It is just about as open-ended as a class can get while still maintaining some kind of a structure. It…

  • CountDownTimer AS3 Class

    Custom class dependencies: CountdownTimerEvent Everyone always wants to make a count down to something. This is a class that attempts to enclose all the functionality that is usually needed to achieve this task. There a so many examples and tutorials out there for creating a count down, that I won’t bother explaining much here. I…

  • DashedLine AS3 Class

    Custom class dependencies: None Flash of course has built-in styles for line strokes, but none of them accomplished what I needed that CSS seems to do so intelligently. This is a simple dashed line drawn pixel for pixel with no antialiasing. This class attempts to make this process easy to use and control.

  • VectorClip AS3 Class

    Custom class dependencies: Vector2D Working with vectors – Part 1, Part 2, Part 3 So far everything done in the series “Working with vectors” have been utilities to help with the calculation of trigonometric values. Now we will apply it to something that will be displayed, a MovieClip! Or in this case, what I call…

  • EventDispatcherList AS3 Class

    Custom class dependencies: None I hope this class will be of as much help to everyone as it is to me. Too many times to count, I needed to manage multiple objects that all use the same listener! Adding the same listener to multiple objects is very useful and code saving in Actionscript 3. Most…