This blog has been moved. This redirect you our new blog with all old posts..

Say Hello World In Flex..

This is the Hello world example in flex.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application
creationComplete="init();"
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:Script>
<![CDATA[
import mx.controls.Alert;

public function init():void{
Alert.show("Hello World..");

}
]]>
</mx:Script>
</mx:Application>

1 comment:

Anonymous said...

wow.. this one is great example of flex.. keep it up.