Note that there are some explanatory texts on larger screens.

plurals
  1. POFlash 10.1 Multitouch in OSX
    primarykey
    data
    text
    <p>Hey, I want to play with the new multitouch functionality of Flash 10.1 as is demonstrated here: <a href="http://blog.martinlegris.com/2009/12/13/tutorial-multi-touch-in-as3-flash-player-101-part-1/#more-186" rel="nofollow noreferrer">http://blog.martinlegris.com/2009/12/13/tutorial-multi-touch-in-as3-flash-player-101-part-1/#more-186</a></p> <pre><code>removeEventListener(Event.ADDED_TO_STAGE, init); // entry point _tf = new TextField(); _tf.width = stage.stageWidth; _tf.height = stage.stageHeight; _tf.mouseEnabled = false; addChild(_tf); Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT; _tf.text = "Input Mode: " + Multitouch.inputMode + "\n"; _tf.appendText("Touch Points: " + Multitouch.maxTouchPoints + "\n"); _tf.appendText("Supports Touch Events: " + Multitouch.supportsTouchEvents + "\n"); </code></pre> <p>But when I do it with my new MacBookPro running osx 10.6.1, I get: </p> <pre><code>InputMode: none; Touch Points: 0; Supports Touch Events: false; </code></pre> <p>Now, I know that it is supported on the MacBooks, because this guy posted a video of it: <a href="http://theflashblog.com/?p=1666" rel="nofollow noreferrer">http://theflashblog.com/?p=1666</a></p> <p>Is there something I need to do different to make that first bit of code to work properly on OSX? A driver to install or something? Can anyone who has got this up and running let me know what I'm doing wrong?</p> <p><strong>EDIT:</strong> Currently on Mac, Multitouch only works inside the AIR runtime, and in addition, the low level touch events are not available. GestureEvents are available, so now my problem is more complicated: I can do Multitouch.supportsGestureEvents which returns true... and I can list out which gesture events I can listen to, ROTATE, PAN, etc. but nothing happens. I can't get any of the events to trigger.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload