2010-02-19 21:03:55 +00:00
|
|
|
package
|
|
|
|
{
|
|
|
|
import mx.core.Application;
|
2010-02-19 21:10:54 +00:00
|
|
|
import mx.controls.Alert;
|
2010-02-19 21:03:55 +00:00
|
|
|
import flash.events.MouseEvent;
|
|
|
|
|
|
|
|
public class CustomApp extends Application
|
|
|
|
{
|
|
|
|
|
|
|
|
function CustomApp()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function butterCup(event:MouseEvent):void
|
|
|
|
{
|
2010-02-19 21:10:54 +00:00
|
|
|
var msg:String = "clicked" + event;
|
|
|
|
trace(msg);
|
|
|
|
Alert.show(msg);
|
2010-02-19 21:03:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|