Vanish's Blog
Happy coding
Vanish
Who is programmer?
Random Article
Top Article
Comments
Message
.
30148
代码高亮
Vanish
posted @ 2009年5月12日 18:54
in 随笔
, 1990 阅读
-
<?xml version="1.0" encoding="utf-8"?>
-
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
-
layout="absolute"
-
creationComplete="initApp(event);">
-
<mx:Button id="btn" label="Show Names"
-
click="showNames(event)" x="216" y="176"/>
-
<mx:Script>
-
<![CDATA[
-
import mx.events.FlexEvent;
-
private function initApp(evt:FlexEvent):void
-
{
-
btn.addEventListener(MouseEvent.CLICK,showNames);
-
btn.addEventListener(MouseEvent.CLICK,showTitles);
-
-
-
}
-
private function showNames(evt:MouseEvent):void
-
{
-
var temp:Array =
-
new Array("ddd","ssss","dsddsd");
-
trace (temp.toString());
-
}
-
private function showTitles(evt:MouseEvent):void
-
{
-
var temp:Array = new Array("Director","Vice-Prresident","President","CEO");
-
trace(temp.toString());
-
-
-
}
-
]]>
-
</mx:Script>
-
</mx:Application>
-