more fixups to mktargets.py and build options, adding example for 03g1

This commit is contained in:
Dan Buch
2010-02-22 23:16:04 -05:00
parent 3a160b9ea6
commit 62930ec4f2
5 changed files with 78 additions and 50 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
creationComplete="initApp()">
<mx:Script>
<![CDATA[
import mx.controls.Alert;
private function initApp():void
{
trace("Hello from Flex Debugging!");
var myVar:Number = 9;
trace("The value of myVar is " + myVar);
}
]]>
</mx:Script>
<mx:Button label="Click Me" click="Alert.show('Hello from Flex');"/>
</mx:Application>