Flex

Upcoming Flex Presos: Colorado, Vegas, Philly, Sydney, and Brisbane

Over the next few months there are a number of great technology conferences across the globe. I’ll be speaking about Adobe AIR and Flex at:

I’m also planning a number of Java User Group visits in March and April. I’ll post the dates for those as soon as I get them nailed down.

<mx:Function> – Declarative Function Definitions in MXML

I think I’m the only Flex developer out there that doesn’t like code behind or mx:Script blocks. So I have my own way of doing things. What can I say? I’m a cowboy! ;)

I frequently code event handlers inline like:

<mx:Button>
    <mx:click>    
    // do something
    // do something else
    </mx:click>
</mx:Button>

I just don’t like having to find code that is only used in this one place somewhere else. This method is just more readable to me.