Flex Application – Image Gallery showing Image loading progress status

April 6, 2009

The Image Gallery developed in Flex showing the Image loading progress status using Progress Bar. Check it out here. You can view its source code by right clicking on the application.


View Flex Applications

March 25, 2009

Following are some of the best Flex Applications.


PlannerX

March 17, 2009

PlannerX is a product to plan basecamp projects faster. It shows an outline view of your project, helps you navigate quickly using keyboard and lets you edit the plan right in place. You can use shorthand for dates and assignees and save the entire plan in one go.

Checkout PlannerX at http://plannerx.appsmagnet.com/


Password Strength Meter

November 7, 2008

Flex:Deep Linking

August 26, 2008

Deep Linking is a term that describes the support for URL based navigation in applications that are not a collection of HTML pages.In Flex 3, Deep Linking is implemented using fragments, the portions of URLs after the “#”. For example, in this link http://mysite/page.html#view=1 the fragment is view=1.

Adding support for Deep Linking to your Flex 3.0 Application is relatively simple. The basic steps are:

1. turn off the HistoryManager (the HistoryManager also uses the BrowserManager and will interfere with your fragment processing).
2. initialize the BrowserManager with a default fragment and title
3. determine when you want to update the fragment and call BrowserManager.setFragment.
4. listen for events from the BrowserManager
5. when you receive an event, interpret the fragment and change your application accordingly

Deep linking only works with certain browsers. The following browsers support deep linking:

* Microsoft Internet Explorer version 6 or later
* FireFox for Windows and Macintosh
* Safari for Macintosh

Some great links for deep linking with examples:
Handling Flex 3’s deep linking in a Cairngorm architecture
Deep Linking with TabNavigator
Deep Linking with ToggleButtonBar


Flex: How to give tooltip/datatip to DatagridColumn

August 19, 2008

There is no tooltip for datagridColumn.But instead its dataTipField. The following is the syntax:

<mx:DataGridColumn headerText=”name” dataField=”name” dataTipField=”name” showDataTips=”true”/>