0
我正在嘗試使用GESTURE_PAN移動MC,並且還使用MOUSE_CLICK轉到另一個框架。 許多人都說GESTURE_PAN和MOUSE_CLICK一起工作,但他們不會在我的iPhone上。 我在網上閱讀了許多Q & A,當然還有在stackoverflow上。ActionScript 3.0 TransformGestureEvent和MouseEvent
stop();
Multitouch.inputMode = MultitouchInputMode.GESTURE;
stage.addEventListener(TransformGestureEvent.GESTURE_PAN, onPan);
table.addEventListener(MouseEvent.CLICK, gotoBox);
function onPan(event: TransformGestureEvent): void
{
table.x += event.offsetX;
table.y += event.offsetY;
if (table.x > (table.width/2))
{
table.x = table.width/2;
}
if (table.x < stage.stageWidth - (table.width/2))
{
table.x = stage.stageWidth - (table.width/2)
}
if (table.y > (table.height/2))
{
table.y = table.height/2;
}
if (table.y < stage.stageHeight - (table.height/2))
{
table.y = stage.stageHeight - (table.height/2)
}
}
function gotoBox(e: MouseEvent)
{
trace("mouse")
}
事情是當我在Flash Pro CC模擬器上測試它一切正常,但不是在我的iDevice上。
幫忙,我沒時間了!