Click here to Skip to main content
15,881,803 members
Articles / Flex
Article

Flex Development using Visual Studio and Amethyst

Rate me:
Please Sign up or sign in to vote.
4.75/5 (6 votes)
14 May 2011CPOL2 min read 29.2K   804   10   6
Demonstration of building Flex applications using Visual Studio 2008 and Amethyst
Sample Image - maximum width is 600 pixels

Sample Image - maximum width is 600 pixels

Introduction

Flex is an open source development framework for creating a variety of rich applications like desktop applications, web applications and mobile applications.

Even though the Flex SDK itself is free, it lacks a free development environment or IDE which can accelerate development using features like intelligent code editing, debugging, profiling, etc.

Still there are a few options, most notably Flash Builder and Flash Develop. Flash Builder is a non-free alternative with a heavy price tag attached to it. Flash Develop is a good free alternative with excellent features like code completion and code generation but it does not have a Graphical User Interface(GUI).

Background

A lesser known free alternative to Flex development is Amethyst, a free Flex IDE by Sapphire Steel. Amethyst Personal is a free Flex IDE which provides development environment for Flex/ActionScript. Amethyst gets installed into the free Visual Studio shell edition and provides a professional environment for flex development like code completion, GUI support, debugging, etc.

To get started with Amethyst, you must first obtain and install the free Visual Studio shell edition from Microsoft.

You also need to download Adobe Flex SDK from the following site:

You can download Amethyst from the following link:

While installing Amethyst, you also need to specify the path where you have downloaded and unzipped Adobe Flex SDK.

Using the Code

You can create your flex application using the familiar drag and drop approach of Visual Studio.

As shown in the output screenshot above, I have placed a Label, a TextInput and two Button controls on the screen.

XML
<?xml version="1.0" encoding="utf-8"?>
<mx:Application height="600" layout="absolute" width="800" 
	xmlns:mx="http://www.adobe.com/2006/mxml">
	<mx:Script>
		<![CDATA[
			
		]]>
	</mx:Script>
<mx:Label height="18" text="Enter your name: " 
		width="112" x="87" y="96"/>	// Label Control
<mx:TextInput height="22" id="txtName" text="" 
		width="160" x="204" y="92"/>	// TextInput Control
<mx:Button click="button_click(event)" height="22" id="btnOK" label="OK" 
name="btnOK" width="65" x="126" y="133"/>	// Button Control
<mx:Button click="btnClear_click(event)" height="22" id="btnClear" label="Clear" 
	name="btnClear" width="65" x="204" y="133"/>	// Button Control

When we double click on the button controls in the design window, the code window opens:

XML
<mx:Script>
	<![CDATA[
		import mx.controls.Alert;		// importing the Alert control
		private function button_click(event:flash.events.MouseEvent):void 
		{		// Event handler for button
			var username:String=txtName.text;	// Getting name entered 
							//by user
			Alert.show("Hello " + username, 
			"Welcome to Flex using VS2008");	// Showing message
		}
	]]>
</mx:Script>
<mx:Script>
	<![CDATA[
		private function btnClear_click(event:flash.events.MouseEvent):void 
	{		// Event handler for button
			txtName.text="";			// Clearing the TextInput
		}
	]]>
</mx:Script>
</mx:Application>

Points of Interest

Flex is an extremely interesting framework and quite easy to learn and Amethyst with Visual Studio provides a very simple yet productive environment for Flex development.

I hope that this article will help a novice start developing Flex applications in quite a short period.

History

  • 14th May, 2011: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer NIIT, India
India India
I am a trainer by profession. Currently I am working with iFuture Technologies(India) as a Senior Faculty. I enjoy programming as a hobby. During my career I have seen the growth and decline of many technologies, many of them being my favorites like Flash, WPF, Windows Mobile Development. Few of my current favorites are Android, Xamarin and Python, though I also like traditional and evergreen languages like PHP, C#, Visual Basic and Java.

Apart from computers, my favorite pastime is bicycling.

Comments and Discussions

 
QuestionCelebrate Mother’s Day with flora wishes Pin
Member 106472212-May-14 23:20
Member 106472212-May-14 23:20 
GeneralMy vote of 5 Pin
_Vitor Garcia_4-Sep-13 23:15
_Vitor Garcia_4-Sep-13 23:15 
GeneralRe: My vote of 5 Pin
Azim Zahir7-Sep-13 0:21
Azim Zahir7-Sep-13 0:21 
GeneralRe: My vote of 5 Pin
_Vitor Garcia_9-Sep-13 22:37
_Vitor Garcia_9-Sep-13 22:37 
QuestionExciting stuff! Pin
Patrick Harris28-Jun-12 17:47
Patrick Harris28-Jun-12 17:47 
AnswerRe: Exciting stuff! Pin
Azim Zahir29-Jun-12 20:34
Azim Zahir29-Jun-12 20:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.