Archive for the ‘Flex 3’ Category

TextArea Automatically Resize

No Comments »

Posting this just on the off-chance someone else ran into the issue and the solutions on the net weren’t up to their needs.

Read More »


Hyperlink Control

No Comments »

Problem
One of my friends had been asking me about how to change the style of the LinkButton like an HTML hyperlink, since people liketo display the link as like as HTML.
Solution
I developed a simple Hyperlink control in Flex that has the same look and feel as an HTML anchor tag.
Detailed explanation
Just create class which extends Text, and change the style on mouseOver to meet the same feel like html hyperlink.

Read More »


Display HTML content in Flex screen

No Comments »

Problem
I have a application where i need to display HTML text in flex screen (using TextArea). Problem is HTML text contains
tag which is not supported in flex htmlText property. So all the information under

Read More »


About data representation, Data binding, Data models, Data validation, Data formatting

No Comments »

Adobe® Flex® provides the following set of features for representing data in your applications: data binding, validation, and formatting. These features work in conjunction with the Adobe® LiveCycle™ Data Services ES and Vega features for working with remote data. Together, they allow you to perform the following tasks:

Read More »


ObjectCollector: Accessing Flex’s objects by id (even dynamic generated) from anywhere

No Comments »

Flex’s components have a nice id property which can be used to easily referencing object created.
All you know, that if I get the following mxml Application file:

Read More »