Tour de Flex is a desktop application for exploring Flex capabilities and resources, including the core Flex components, Adobe AIR, data integration, and a variety of third-party components, effects, skins, and more.

Tour de Flex has three primary goals:
- Provide non-Flex developers with an overview of what is possible in Flex in a “look and see” environment
- Provide Flex developers with an illustrated reference tool
- Provide commercial and non-commercial Flex developers with a place to showcase their work
Continue reading ‘Tour de Flex’
A common hurdle a developer may face is dealing with exceptions in BlazeDS. When an exception is thrown in Java, how do we handle this in flex? Here is a simple and flexible approach inspired by Scott Morgan.
1. Create a Java Class that extends RuntimeException.
package com.flexpasta.exception;
public class FlexException extends RuntimeException
{
public FlexException(String message)
{
super(message);
}
}
Continue reading ‘Exception Handling with Flex’
Flex Photo gallery in Flex using the TileList control, Image control, and the PopUpManager class.
Full code after the jump.
View MXML
<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"layout="vertical"verticalAlign="middle"
backgroundColor="white">
<mx:Style>
Continue reading 'Creating a simple image gallery with the Flex TileList control'
The new FlexComponents mailing list is now live. Whether you’re having an issue subclassing one of the base Flex Framework components, or you’re starting from scratch on top of the UIComponent class and want to know more about all those functions you can override, this is the place to go. Unlike the famous FlexCoders list, which covers all aspects of Flex (check it out, if you haven’t yet), the components list will only focus on custom components.
Adobe wants the community to go hog-wild with components. That’s why Ted started the list. I don’t doubt that Flex.org will be expanding soon to include all sorts of useful component information. If you’re interested in some of what the community is building already, check out the Flex Exchange. It just opened, so more and more components should be added in time.
I recently posted a very simple component there. It’s a specialized TextInput box that will grow or shrink to fit its text. This component is beyond simple to implement, but it worked well in my Regular Expression explorer and I’m sure that others can find uses for it too.