Presentation Models
Here are a few good links on the concept of Presentation Models
http://blogs.adobe.com/paulw/archives/2007/10/presentation_pa_3.html
http://www.dehats.com/drupal/?q=node/49
http://www.dehats.com/drupal/?q=node/53
This blog reflects my interests in sports, Flash / Flex technologies, some programming and other things that I come across in daily life.
Here are a few good links on the concept of Presentation Models
http://blogs.adobe.com/paulw/archives/2007/10/presentation_pa_3.html
http://www.dehats.com/drupal/?q=node/49
http://www.dehats.com/drupal/?q=node/53
K so I intend to get back to blogging...
I wasn't aware of there being an open source IDE for ActionScript 3.0 and Flex MXML files.
I just happened to stumble upon FlashDevelop (listed under osflash).
Some of the features I really liked out FlashDevelop are:-
1. Its FREE !!
2. Provides code hinting and code completion for MXML files.
3. Customizable Project templates
4. Community support for plugins
5. It is light on resources unlike Flex Builder.
I still need to start working with projects in FlashDevelop though. Things I guess I would miss out would be Debugging, and the Design view of Flex Builder.
more to follow...
at
9:27 PM
0
comments
Links to this post
Labels: Flash Develop, IDE, Open Source
I am now an Adobe Certified Flex 2 Developer!!
Cleared the exam today with 85% score at the NIIT centre on MG Road.
Incidentally, I had initially planned to appear for the exam tomorrow and had gone to the center only to register a slot for Saturday. However, all slots for the weekend were full and the next slot would have been only on a weekday.
So I decided to give the exam on the spot, since a slot was available.
It turned out to be a good decision!!
The exam is pretty easy if you have enough working experience working with Flex.
The best place to study for the exam is from the Adobe Flex Help docs.
at
9:51 PM
9
comments
Links to this post
Labels: Adobe, Certification, Flex
A friend of mine needed a Tree Component which had images to the right of text labels and also which would have some items disabled.
The simplest way to go about it was to use a custom ItemRenderer for the Tree component. Here is how I tried to solve it...
at
10:00 AM
1 comments
Links to this post
Labels: Flex, ItemRenderer, Tree
I came across a peculiar requirement:- An accordion with non responding headers if the container is empty.
I extended the Accordion class and did an override of the set selectedIndex method...This is where the index is set and an event is dispatched.
I ran into trouble when I could not access children of another container within the same component. It always returned me 0 children. The solution being setting creationPolicy="all" this would force the accordion to draw all children during the initial phases. Else it defers this until the component is accessed.
Another problem I encountered was that first time set selectedIndex always get the numChildren as 0. This has been tackled by setting a dirtyFlag for the first time.
The example is here (view source enabled)
Do drop a comment if you find this useful or think it could have been done in a better way.
at
7:29 PM
1 comments
Links to this post
Labels: Accordion, Custom Component, Flex
Just came across the "prompt" property of ComboBox control.
The "prompt" property allows you to set a message for the user to select any option from the dropdown.
Check the image below to view the output.