Archive for Actionscript 2

Prototyping: ActionScript’s best kept secret.

As a developer, once in a while  you discover something new that makes you go  ”How come nobody ever told me about this and why do I only find this out NOW ? ”  Last year, when I discovered that a Function in AS3 is also a class and can be used as a a [...]

drawing a perfect circle with the curveTo function.

I’m guessing most of you already know what the graphics.curveTo function is. As the name suggests, it allows you to draw a curved line that starts at a certain point, bends towards a control point, and ends in an anchor point. The starting point of the curve can be defined in three ways: undefined: the [...]

ColdFusion-Powered flex/air RIA

A few days ago, Adobe asked me to speak on a workshop about the integration between ColdFusion 8 and Flex. As a ColdFusion developer, the ColdFusion part was not a problem, but I was a bit afraid by the Flex part, since I’ve never used Flex or flex builder before.  I eventually decided that I [...]

Settimeout in AS2 classes

I know this has been mentioned on other blogs but I just wanted to write about this myself (first blogposts ). The problem when dealing with the global timeout method in actionscript 2 classes was and still is that you are not able to use the setTimeout global function. Whereas setInterval is still accessible. But [...]