Title says it all.
Im being pressed for multi touch support but theres lots of times when it feels like it would just mess things up.
Can I turn it on and off? [import]uid: 108660 topic_id: 25929 reply_id: 325929[/import]
No it can’t - sorry Jeff
[import]uid: 52491 topic_id: 25929 reply_id: 105029[/import]
I thought you could do that.
[lua]system.activate(“multitouch”)
system.deactivate(“multitouch”)[/lua]
???
[import]uid: 64174 topic_id: 25929 reply_id: 105038[/import]
In places where you think it would mess up:
[lua]function touch_events(event)
if event.id ~= 1 then
return
end
–code
end[/lua] [import]uid: 79135 topic_id: 25929 reply_id: 105054[/import]
>>In places where you think it would mess up:<<
Its worth a try.
But thats a LOT of places.
Right now, I think my biggest issue stems from two things:
One, the code needed to make pinch zoom work looks horrendous to me…
Two, I have an area that people expect to add something as soon as they tap.
So that happens as soon as finger one arrives. I could detect finger two, but something has already happened by the time it arrives.
I’ve wasted weeks trying to code around this, and just today have ditched the whole plan in favour of a slider for zoom.
[import]uid: 108660 topic_id: 25929 reply_id: 105055[/import]
@Satheesh - last time I talked about this with someone in the office we weren’t able to do it, although you’re right, according to; http://developer.anscamobile.com/reference/index/systemdeactivate that command should work fine.
Perhaps at the time of the discussion we had a bug that needed fixing - can you tell me whether or not that has been working for you in 704? If not I will do a test later, if it is indeed working correctly now that would obviously save a lot of headaches
[import]uid: 52491 topic_id: 25929 reply_id: 105348[/import]