Comments
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Cloud Expo on Google News

SYS-CON.TV
Cloud Expo & Virtualization 2009 East
PLATINUM SPONSORS:
IBM
Smarter Business Solutions Through Dynamic Infrastructure
IBM
Smarter Insights: How the CIO Becomes a Hero Again
Microsoft
Windows Azure
GOLD SPONSORS:
Appsense
Why VDI?
CA
Maximizing the Business Value of Virtualization in Enterprise and Cloud Computing Environments
ExactTarget
Messaging in the Cloud - Email, SMS and Voice
Freedom OSS
Stairway to the Cloud
Sun
Sun's Incubation Platform: Helping Startups Serve the Enterprise
POWER PANELS:
Cloud Computing & Enterprise IT: Cost & Operational Benefits
How and Why is a Flexible IT Infrastructure the Key To the Future?
Click For 2008 West
Event Webcasts
My First Flex Application
For this article I used Flex 2 beta3. Since then Flex 2 has been released so you should download that

We'll walk through the following steps to write our first Flex application.

  1. Install the free Eclipse integrated development environment
  2. Install the Flex Builder 3 plug-in for Eclipse
  3. Write the application
  4. Test/debug the application
When you set out to write your first Flex application you'll have to choose what tool you'll use to write it with. Currently the most popular tool to use is the free Eclipse IDE. If you don't have Eclipse installed go to http://www.eclipse.org/ to install it. You'll need to install Eclipse 3.1 to use Flex 2 Beta 3.

Select the Downloads link
Select the Eclipse SDK 3.1.2 for Windows to download, if you have Windows.

Eclipse can be used with many operating systems. I'll be using Windows XP with the Sun Java 2 Standard Edition Platform version 1.4.2_08 for Microsoft Windows. See the Eclipse readme_eclipse.html for more information.

Figure 1

There are various plug-ins available for Eclipse. There's a Flex plug-in we'll install so we can use Eclipse to write our Flex app. The Eclipse plug-in for Flex is included in the Flex download. Go to http://labs.adobe.com/ to download the Flex 2.0 Beta 3.

Open the Eclipse IDE by clicking the Eclipse icon.

Figure 2

Eclipse will ask you where you want your workspace to be located. Just leave it in the default directory for now. Press OK.

Figure 3

We have to install the Flex Plug-in into Eclipse. I downloaded the Flex Builder 2 Beta 3 and selected the install option.

I'll choose the Flex Builder plug-in and Flex SDK option to install Flex Builder as an Eclipse plug-in.

Figure 4

Press the Unpack button to unpack to a temporary installation area.

Figure 5

Press the Next button.

Figure 6

Accept the license.

Figure 7

Accept the default directory to install the Flex Framework.

Figure 8

The My Eclipse folder is in my desktop, so that's where I installed the Flex plug-in.

Figure 9

After you press OK, the path to the Eclipse plug-in is entered. Press Next.

Figure 10

You'll have to install Flash Player 9.0 to view applications developed with Flex 2 for the browser of your choice.

Figure 11

Check your pre-installation summary to verify that everything is correct then press the Install button.

Figure 12

Once installed, you'll get a message that the software has been successfully installed.

Figure 13

Open the Eclipse program. Make a note of the default workspace where Eclipse will be looking for your applications or choose a directory where you want Eclipse to look for your applications.

Figure 14

To verify that the Flex Builder 2 Beta 3 plug-in was installed, select Help/Software Updates/Manage Configurations.

Figure 15

You should see the Flex Builder 2 Beta 3 plug-in zorn.feature.core 2.0.340.

Figure 16

Open a new project in Eclipse.

Figure 17

Under Flex, select Flex Project and press the Next button.

Figure 18

We won't use any Flex server technology for this application, so select the Basic radio button and press the Next button.

Figure 19

Name the project and press the Finish button. I called mine MyFirstFlex2Beta3App.

Figure 20

Enter the Flex Builder 2.0 serial number or select Try to try Flex Builder.

Figure 21

Select OK to switch to the Flex Development Perspective.

Figure 22

Flex defaults to the Source view. Select the Design tab to switch to the Design view.

Figure 23

In the Design view locate the Panel component under the Components tab on the lower left and drag the Panel to the stage.

Figure 24

In the Flex Properties tab on the lower right, type in myPanel next to the id field under the General area. Next, locate the ControlBar component on the lower left and drag it to the bottom of the Panel.

Figure 25

Next to the id in the Flex Properties type myControlBar in the General area.

Figure 26

Locate the Button component under the Controls folder on the lower-left Components tab. Drag the Button component and put it over the ControlBar component.

Figure 27


About Mary McDonald
Mary McDonald has served the last four years as the Northern Indiana Adobe Users Group Manager (see www.ninmug.org), has attended many conferences including CFUNITED, MAX, MXNorth and TodCon. Out of her 16 years working as a software developer, Mary has worked the last 6 years with ColdFusion, SQL, Flash, and Flex and is a Certified 5.0 ColdFusion Developer. Mary's other interests include music, photography, traveling, dogs, and most recently Tai Chi.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

Thanks! That's what I want. The original code with 'srv.result.catalog.product' has error. But where does 'lastResult' come from?

>>> QUOTE:
-FYI-
DataGrid Syntax Error: For me to get the app to work, I needed to change the mx:DataGrid tag to

Catalog.xml: It's located in the samples folder under the Flex Builder 2 Plug-in folder. For me, that was

C:\Program Files\Adobe\Flex Builder 2 Plug-in\Flex SDK 2\samples\flexstore\data\catalog.xml.

-FYI-
DataGrid Syntax Error: For me to get the app to work, I needed to change the mx:DataGrid tag to

<mx:DataGrid width="100%" height="100%" dataProvider="{srv.lastResult.catalog.product}"/>

I can not find the Catalog.xml that I am suppose to copy to the BIN folder. The quote below says that it is currently in my Application folder.... nope... it is not... in fact I don't even have a bin folder. The walk through has be great until now when it refenced a file I can't find. Please send me the file... or let me know where I can download it, etc.

>>> QUOTE:
Next, we will add some data to our panels using the HTTPService command to read an XML file located currently in your application bin folder. Copy the Catalog.xml file to your application's bin folder.


Your Feedback
George Lu wrote: Thanks! That's what I want. The original code with 'srv.result.catalog.product' has error. But where does 'lastResult' come from? >>> QUOTE: -FYI- DataGrid Syntax Error: For me to get the app to work, I needed to change the mx:DataGrid tag to
bigbadken wrote: Catalog.xml: It's located in the samples folder under the Flex Builder 2 Plug-in folder. For me, that was C:\Program Files\Adobe\Flex Builder 2 Plug-in\Flex SDK 2\samples\flexstore\data\catalog.xml. -FYI- DataGrid Syntax Error: For me to get the app to work, I needed to change the mx:DataGrid tag to <mx:DataGrid width="100%" height="100%" dataProvider="{srv.lastResult.catalog.product}"/>
Greg C wrote: I can not find the Catalog.xml that I am suppose to copy to the BIN folder. The quote below says that it is currently in my Application folder.... nope... it is not... in fact I don't even have a bin folder. The walk through has be great until now when it refenced a file I can't find. Please send me the file... or let me know where I can download it, etc. >>> QUOTE: Next, we will add some data to our panels using the HTTPService command to read an XML file located currently in your application bin folder. Copy the Catalog.xml file to your application's bin folder.
Latest Cloud Developer Stories
Swisscom, the Swiss telecom, is going into the cloud business. Its subsidiary Swisscom IT Services AG has signed up with Red Hat as a Certified Cloud Provider and launched a public cloud Infrastructure-as-a-Service (IaaS) cloud targeting enterprise-class customers primarily in ...
Apache Deltacloud, the Red Hat-contributed ReSTful API that abstracts differences between clouds so services on any cloud can be managed – provided of course there’s a driver – has graduated from the Apache Foundation’s incubator and is now a full-fledged Top-Level Project (TLP)....
In a surprise move on Tuesday, January 10, Oracle wheeled out its Big Data Appliance. That’s the one it said in October would be ready sometime in the first half. Only nobody believed it meant early in the first half. Heck, it’s not even clear anybody thought Oracle could make ...
Rackspace Hosting, the service leader in cloud computing, on Thursday announced its acquisition of SharePoint911, an industry leader in SharePoint consulting, training, and "JumpStart" services within SharePoint. The unification of both companies provides capabilities to deliver ...
CloudLinux, Inc., on Thursday released CafeFS 3, a virtualized file system for shared hosters that cages each customer within its own virtualized file system. CageFS becomes part of CloudLinux OS at no additional charge. CloudLinux OS, the only commercially-supported Linux OS m...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON Featured Whitepapers
ADS BY GOOGLE

Breaking Cloud Computing News