マウスジェスチャをサポートするライブラリ Mouse Gesture Recognition マウスの軌跡を登録しておけば、その軌跡に近い動きをした時にイベントを通知してくれる。 下のウィンドウにマウスで四角形か三角形を(マウスをクリックしたまま一筆書きで)書いてみて下さい。 package { import flash.display.*; import flash.utils.*; import flash.events.*; import fl.transitions.Tween; import fl.transitions.easing.*; import com.foxaweb.ui.gesture.*; [SWF(width="400", height="400", backgroundColor="#ffffff")] public class MouseShape exte

