我製做了一個動態的文字框
我想要可以用滑鼠移動他
我曾經用 on (press) 與startDrag的事件去處理..可是怎麼試都試不出來
>"<請教flash高手 可以指導一下 非按鈕的文字動態框該怎麼下actionscript
2007-07-01 19:20:34 · 1 個解答 · 發問者 Anonymous in 電腦與網際網路 ➔ 其他:電腦
我的動態文字框有做傳回值的動作..
in_txt 傳到 out_txt
send_btn.onRelease = function() {
out_txt.text += in_txt.text;
};
我想要 user 輸入後 可以移動 輸入的那個文字
^^ 謝謝
2007-07-02 09:52:41 · update #1
在你的 out_txt 裡頭加入這樣:
onClipEvent(mouseDown){ this.startDrag(); }
onClipEvent(mouseUp){ stopDrag(); }
2007-07-07 01:56:26 · answer #1 · answered by mh 7 · 0⤊ 0⤋