Merge remote-tracking branch 'PracticingFlex/master'

This commit is contained in:
Dan Buch
2012-03-03 20:11:20 -05:00
103 changed files with 4279 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package
{
import mx.core.Application;
import mx.controls.Alert;
import flash.events.MouseEvent;
public class CustomApp extends Application
{
function CustomApp()
{
}
public function butterCup(event:MouseEvent):void
{
var msg:String = "clicked" + event;
trace(msg);
Alert.show(msg);
}
}
}

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<loc:CustomApp xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:loc="*" layout="absolute">
<mx:Button id="mutton" label="howdy" click="butterCup(event)" />
</loc:CustomApp>