HomeAbout

HTMLStyle

HTMLStyle is a component I developed for the sake of simplifying the process of formatting html-text in Flex. It allows you to create a stylesheet pretty similar to the way you would place a mx:Style tag for declaring style definitions for your components.

The component also has a source property which can be set to target an external css file..

Check it out here:
rubenswieringa.com/blog/htmlstyle

xml search class

A neat little class that allows you to search an already loaded xml file. You can search for attributes or node data and you can search for the first match only or you can search recursivly.

http://blog.maxgarfinkel.com/archives/8

AS3 Embeded

Embeded is an easy way to embed image assets into your AS3 project.

http://www.uza.lt/codex/as3-embeded/

AS3 Easing

Easing is a Singleton that lets you do dynamic point-to-point property tweening. It is able to manipulate virtually any property of any object on or off the stage.

http://www.uza.lt/codex/as3-easing/

HashMap

From the site:

he inclusion of the Dictionary class in ActionScript 3 creates numerous possibilities when sub classing. The Dictionary class allows for creating key / value mappings or tables which are more commonly known as Hashes or Hash Maps. The only problem is that the Dictionary class does not provide an API for working with the map.

http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/

AS3 Global Object

Dynamic, Singleton Global class for AS3.

http://www.uza.lt/blog/2007/04/as3-global-object/

Wait

From the site:

How many times have you been coding Actionscript and needed to run some code in a second, or two, or whatever? I know, you can create a setInterval, blah, blah, blah. But that’s such a pain in the the ass.

So, I made a class with just one method to do make it easier for you to wait a second. If you need to call a function/method in, say half-a-second, then all you would write is this:

Wait.For(500, myMethod).

Done.

But, wait, there’s more. You can pass arguments that you need to send to your function/method. Just like this:

Wait.For(500, myMethod, “coffee”, “hot”, “cream”, suger”);

http://polygeek.com/159_adobeflash/actionscript_wait-just-a-second