iTunes Like Flex Search TextInput

While thinking about how to implement and style a slick text based filter for data shown in a Flex DataGrid I stumbled upon the solution when searching for some of my favorite songs in iTunes. The search field in iTunes offers exactly the functionality I was looking for, packed in Apple’s usual understated style. Well, … Read more

There is an excellent article over at newtriks (referencing other excellent articles regarding this subject) on how to add skin states to Flex 4 Containers using ActionScript. I implemented my custom SkinState using the information provided, but never succeeded. There was definitely something missing, which was not obvious to me.

By digging in the Flex 4.5 API docs I’ve found a way to determine if a certain element (object) of the spark.components.DataGrid.dataProvider is visible in the viewport of the spark.components.Scroller wrapping the DataGrid.

Ever tried to use an ItemRender and a labelFunction for a Spark DataGrid GridColumn at the same time with the GridItemRenderer template provided by Flash Builder? If you run into problems as well, read on for a simple solution.

Flex 4.5 MySQL Query Browser

I was looking for a simple MySQL query browser to provide individuals who wish to learn SQL with a tool to get started. Since I couldn’t find a satisfactory software I decided to create one. The result consists of a Flex interface using Zend AMF for remoting, therefore PHP as backend technology, and is available … Read more

Create Flex 4.5.* API docs for offline view on Mac OS X

Even today it seems to be difficult to find a downloadable version of the Flex 4.5 SDK API docs. However, it turned out that it is not that difficult to create a local copy of the API docs using ant. All you need is a copy of a Flex 4.5 SDK, ant and a bit of … Read more

For my latest little Flex project, I used Zend Amf instead of amfphp for remoting. I had no trouble getting started with Zend Amf since I’m familiar with amfphp and there are good resources available on the web ( e.g. Zend Amf Wiki and Flex and PHP: remoting with Zend AMF ). However, one thing … Read more