Posted by: vx on: September 22, 2008
few blogs that new flex developers (like me) should always keep visiting. I being fairly new to flex have learned a gr8 deal from these Flex veteran, reading there blogs always provides me with better solutions and ideas.
Ely Greenfield | Doug Mccune | Ted Patrick | Mrinal Wadhwa | Renaun Erickson | Abdul Quabiz
enjoy reading [...]
Posted by: vx on: September 19, 2008
Perhaps some of you may not know this, but event-bubbling in Actionscript3.0 is way cool and well worth your attention. So read on.
With event-bubbling you can let one Event subsequently call on every ancestor (containers of containers of etc.) of the DisplayObject that originally dispatched the Event, all the way up to the surface (read: [...]
Posted by: vx on: September 16, 2008
There are different kinds of events in the Flex world. An event can be generated from user gesture, return of requests and component lifecycle. Use event is a two step process, (1) You need to write the handler (2) You need to register the handler to the event hook. To register event, there are two [...]
Posted by: vx on: September 15, 2008
The lifecycle of component can be easily understood in few simple steps firstly you create a component holder, then create-children, set-sizes/properties and dispatch events. Following four methods plays a major role in component rendering.
createChildren()
commitProperties()
measure()
updateDisplayList()
Here is what I found after doing some studies. The most of the following part is taken from Adobe flex help [...]
Posted by: vx on: September 9, 2008
I heard that quite a number of people have issues when it comes to uploading file-content from a Flex application to a server. This is especially true if the upload happens as part of a “session”, meaning a user is authenticated and each HTTP request carries a sessionid back to the server. That sessionid is [...]
Comments