我在Flash Builder中編寫我的第一個應用程序,但我對Flash有很多經驗。我試圖在Flash Builder中使用按鈕類,但是我的錯誤顯示「無法找到導入按鈕」。我試圖導入flash.display,flash.ui來查看它Button被隱藏在其他地方。關鍵是通過xml動態加載按鈕及其標籤。任何幫助表示讚賞。謝謝!FlashBuilder 4.6 mx.controls.Button丟失?
<fx:Script>
<![CDATA[
import flash.events.*;
import mx.controls.Button;
private function doAdd(e:Event):void {
var buttonList:XMLList = new XMLList([email protected]);
for(var i=0; i<buttonList.length(); i++){
var btn:Button = new Button();
btn.label = buttonList[i];
buttonBox.addElement(btn);
}
}
]]>
</fx:Script>
<s:VGroup left="30" right="30" top="50" bottom="30" id="buttonBox">
</s:VGroup>
非常感謝你李!火花按鈕工作完美! – user1876246 2013-02-17 00:31:26
沒問題。請標記爲回答:) – 2013-02-17 01:30:27