Create Tiny url Air App

December 27, 2009

You can create a Flex tiny url creator application using our explanation on one of our other pages.

But if you just want a nice tiny url creator desktop application, download our Adobe Air version.

You can copy paste your long url into the app, and get a nice short url back from http://snurl.eu Read more

Drag and Drop from DataGrid or AdvancedDataGrid to Tree

December 16, 2009

One of the coolest things in Flex is the ability to create Drag and Drop operations very easily. For List base controls like the List and DataGrid / AdvancedDataGrid, it works out of the box, just set the dragEnabled property of the source and the dropEnabled property of the other and it’s already working. Dragging and Dropping to a Tree however, does not work by simply setting the dropEnabled property. The following example shows you how you can drag items from a DataGrid / AdvancedDataGrid to a Tree.

Read more

Style AdvancedDataGrid depending on data example

December 15, 2009

Besides displaying Trees, SummaryRows and stuff like that, the AdvancedDataGrid has another nice feature the standard DataGrid doesn’t have: a styleFunction! Using that we can style the label as we like for each column in each row. Take a look at the following example to find out how its done.

Read more

Using States in Flash Builder

December 15, 2009

One powerful thing in Flex/Flash is the use of states. States can be used to control the behavior of your application based on the state that it’s in at the moment. Let’s say we want to have an display and edit mode in our application and we want to show something different in those modes / states. Let’s create a simple example that shows you how you can use states to achieve this.

Read more

Twitter Search with Flex Builder

December 7, 2009

If you are building a flex Twitter app there are some things you just cannot create this app without.

Especially this function. It’s a twitter search function build with Flex Builder.

Let’s say you want to let your application users search for twitter friends. Well with this function that is possible.

The code for this is actually not big and generated with the connection wizard adobe provides within the Flex Builder.

Read more