FlexUnit Article on InsideRIA
They have a good picture of me over on the contributors page as well. That picture always amuses me.
ActionScript Reference for RIA Development
http://www.adobe.com/devnet/actionscript/articles/atp_ria_guide.html
Flex Camp Tomorrow
Registration is full, but we are going to be broadcasting the entire event live on Adobe Connect from 9:30am to 12:00pm EST and then after lunch break from 1:00pm to 5:00pm EST.
The connect URL is: http://adobechats.adobe.acrobat.com/dcflexcamp08/
Choose the "Enter as a Guest" option and click "Enter Room" after entering your name. We look forward to seeing you online!
Washington DC Flex Camp
Flex Camp is designed to be an introductory crash course in Flex for anyone interested in learning the basics from the experts. Flex 3 will be discussed as well as a special presentation on building AIR applications with Flex.
The final list of speakers will be announced soon. Space is limited to only 70 participants so you are encouraged to register early. Breakfast and Lunch will be provided. More information is available on the http://flexcamp.aboutweb.com/ website with a copy of the agenda and a link to register.
Hope to see you all at Flex Camp!
Capital Area Flex User's Group Connect Recording URLs
-Adobe AIR Overview
http://adobechats.adobe.acrobat.com/p26954584/
Christian Cantrell, AIR Product Manager
-Deconstructing AIR Applications
http://adobechats.adobe.acrobat.com/p41045993/
Capital Area Flex User's Group Connect URL
http://adobechats.adobe.acrobat.com/capfug1107/
Capital Area Flex User's Group
We’ll be starting shortly after 6pm here at the AboutWeb office and as always, free Pizza, Soda, and Snacks will be served between presentations so no one goes hungry.
Capital Area Flex User's Group
Creating a Class Dynamically in Flex Based on the Name
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="addButton()">
<mx:Script>
<![CDATA[
import flash.utils.getDefinitionByName;
private function addButton():void{
var className:String="mx.controls.Button";
var ClassReference:Class = getDefinitionByName(className) as Class;
var instance:Object = new ClassReference();
instance.label="Test"
this.addChild(DisplayObject(instance));
}
]]>
</mx:Script>
</mx:Application>

