Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
createjs の簡単な例を試してみましたが、onMouseUp イベントが発生しません。その理由は何ですか?
これが私が試した例です
100%確信はありませんが、その構文が機能するかどうかはわかりません。
_stage.onMouseUp = stageClickHandler;
私はいつもHaxeにイベントリスナーを追加することを好みます:
_stage.addEventListener(MouseEvent.MOUSE_UP, stageMouseUpHandler);