A free full-day, hands-on training session, where attendees can learn how to build their first Flex application using the latest Flash Builder 4 beta software. This training is designed to help experienced ColdFusion developers get started in understanding how to add rich UI to existing and new ColdFusion applications.
Dates / Times
Friday, November 20
Adobe SF, 601 Townsend Street, San Francisco, CA 94103
Event: 9am – 4pm
Registration: 8:30am
Main Website / Registration
http://www.adobe.com/go/flextrainingforcfdevelopers
The folks at the FFDM (Flash & Flex Developer Magazine) have gone virtual. They've sent copies of their previous issues. As a ColdFusion and Flex developer I was surprised by how much information in these magazine was new to me.
It's always great to get plugged-in to a new circle of developers. FFDM give me insight into the Flash world.
Keep up the good work guys.
You can download the past issues and see for yourself, then subscribe to the free online edition
I'm presenting at the CALI Conference in Boulder Colorado on June 19th, 2009.
If you have questions, drop me an email Sid Maestre
Read more...
I saw this message in my console while developing a flex application with Cairngorm.
Problem
I'm using the more "generic" object class when returning results from the Cairngorm Service.
The results contain data which is bound to a TileList component. In the TileList is a custom item renderer,
I'm using to display an image.
Read more...
Encountered this error while working with a datagrid and using the itemClick property to select and item from the datagrid.
The solution is to use the "change" property and pass a ListEvent to your handler function. I was using the click property on the datagrid and pass a MouseEvent to the handler function. The change function does not get fired when the header is clicked and now error 1009. See before and after code below.
BEFORE CODE
<mx:Script>
<![CDATA[
private function clickHandler(event:MouseEvent):void
{
trace(Click Handler;);
}
]]>
</mx:Script>
<mx:DataGrid width="100%" height="100%"
dataProvider="{myAC}"
click="clickHandler(event)">
<mx:columns>
<mx:DataGridColumn headerText="Title" dataField="title"/>
</mx:columns>
</mx:DataGrid>
AFTER CODE
<mx:Script>
<![CDATA[
private function changeHandler(event:ListEvent):void
{
trace('Change Handler;);
}
]]>
</mx:Script>
<mx:DataGrid width="100%" height="100%"
dataProvider="{myAC}"
change="changeHandler(event)">
<mx:columns>
<mx:DataGridColumn headerText="Title" dataField="title"/>
</mx:columns>
</mx:DataGrid>
Recent Comments