반응형
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
<mx:ArrayCollection id="ac">
<mx:Array>
<mx:Object name="scott" phone="55-234-4532"/>
<mx:Object name="allen" phone="55-335-3492"/>
<mx:Object name="smith" phone="55-443-2342"/>
<mx:Object name="clerk" phone="55-543-2352"/>
<mx:Object name="james" phone="55-664-3324"/>
</mx:Array>
</mx:ArrayCollection>
<mx:Panel width="250" height="200" layout="absolute" horizontalCenter="0" verticalCenter="0">
</mx:Panel>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
public function init():void{
var str:String = "";
for(var i:uint=0;i<ac.length;i++){
str+=ac[i].name+", "+ac[i].phone+"\n";
}
mx.controls.Alert.show(str);
}
]]>
</mx:Script>
</mx:Application>
반응형