In this discussion, I will focus on the basics of Flex, a web development framework based on Flash. The first section will be about the whys and wherefores of Flex. The second section will cover the steps involving the development of a Flex-based application. In the third and fourth sections, a real world application using Flex will be developed.
Getting Started with Flex - Flex in the Real World (Page 3 of 4 )
The application that will be discussed in this section is an RSS feed reader. It will perform the following tasks:
Make a call to the RSS feed site.
Get the item name and description.
Display them in a table.
Some of the controls and services being used in this example will give you an overview of the controls that will be discussed in the future. First let us create the user interface. The preliminary step is to declare the primary container (i.e. the application container).
The HTTPService makes a call to the service present at the site mentioned by the URL attribute and retrieves the response in the format provided as the value for the resultFormat attribute. In this case, it is in object format.