멀티터치 드래그 소스입니다.
마치 무비클립의 드래그 드롭과 같습니다.
/* Touch and Drag Event
Allows the object to be moved by holding and dragging the object.
*/
Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
mc.addEventListener(TouchEvent.TOUCH_BEGIN, touchBegin_2);
mc.addEventListener(TouchEvent.TOUCH_END, touchEnd_2);
var fl_DragBounds_2:Rectangle = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
function touchBegin_2(event:TouchEvent):void
{
event.target.startTouchDrag(event.touchPointID, false, fl_DragBounds_2);
}
function touchEnd_2(event:TouchEvent):void
{
event.target.stopTouchDrag(event.touchPointID);
}
/* Touch and Drag Event
Allows the object to be moved by holding and dragging the object.
*/
Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
mc.addEventListener(TouchEvent.TOUCH_BEGIN, fl_TouchBeginHandler_3);
mc.addEventListener(TouchEvent.TOUCH_END, fl_TouchEndHandler_3);
var fl_DragBounds_3:Rectangle = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
function fl_TouchBeginHandler_3(event:TouchEvent):void
{
event.target.startTouchDrag(event.touchPointID, false, fl_DragBounds_3);
}
function fl_TouchEndHandler_3(event:TouchEvent):void
{
event.target.stopTouchDrag(event.touchPointID);
}
'FLASH > AIRforAndroid' 카테고리의 다른 글
StageWebView 간단 사용법 (0) | 2013.11.20 |
---|---|
안드로이드 4용 플래시플레이어 입니다. (0) | 2013.08.13 |
스마트폰 해상도에 관계없이 볼수 있도록 하려면 (0) | 2013.06.20 |
스마트폰 화면을 오래 눌렀을 때 동작하게 하려면 (0) | 2013.04.26 |
터치이벤트로 공던지기 구현 (0) | 2013.04.26 |
멀티터치 탭이벤트 (0) | 2013.04.26 |
네이트 앱스토어 개발자 등록하기 (0) | 2013.04.24 |
AIR로 블랙베리 개발하려면 (0) | 2013.04.24 |
현재 내 기기의 AIR런타임버전을 확인하려면 (0) | 2013.04.05 |
시스템 대기모드, 프로그램 멈춤/다시시작 기능 넣기 (0) | 2013.04.05 |