On a Dell Inspiron One TouchScreen All-in-one computer, I'm trying to use startTouchDrag() but it is not working. The monitor sends TouchEvent.TOUCH_BEGIN and TouchEVENT.TOUCH_END but no TOUCH_MOVE when I drag my finger. My event handlers are running correctly when I touch and let go but the Sprite is not dragging. Any ideas what could be missing?
Backstory
I have an AIR application which ran fine on an ELO touch screen. The user would drag certain items and place them into a bucket. The application listened for MouseEvent.MOUSE_DOWN, upon which it would start startDragDrop(). On MouseEvent.MOUSE_UP it would do stopDragDrop(). On the Dell, it didn't work because when you touch the screen, it fires a simultaneous MOUSE_DOWN then MOUSE_UP event... which respectively runs startDragDrop then stopDragDrop immediately killing the drag and drop functionality. Only the TouchEvents fire correctly upon touching and letting go.