我想加載一個圖像使用加載程序,然後我想讓它可拖動。加載是通過從tilelist中選擇,如下所示,但我不知道在AS3中拖放,任何人都可以幫助我嗎?我想讓它儘可能簡單。製作加載圖像可拖動動作3
這裏是我的代碼加載圖像:
var charge1:Loader = new Loader();
addChild(charge1);
this.addChildAt(charge1, getChildIndex(bg));
charge1.x = 280;
charge1.y = 270;
...
function setCharge1(e:Event):void{
trace(e.target.selectedItem.source);
this.charge1.load(new URLRequest(e.target.selectedItem.source));
this.charge1.contentLoaderInfo.addEventListener(Event.COMPLETE,onComplete);
}
恐怕沒有,因爲到Adobe文檔 繼承:\t裝載機 - >級DisplayObjectContainer - > InteractiveObject - 要>的DisplayObject - >此事件 - >對象 和你的代碼給了我這樣的: 錯誤#1069:在flash.display.Loader中找不到屬性stopDrag,並且沒有默認值。 – Dungeo 2009-04-27 08:07:15
對不起,我在DisplayObject和Sprite之間感到困惑。希望詹姆斯海的回答可以幫助你:) – yuku 2009-04-27 08:27:25