touch

Disable WebView touch events in Android

How do you disable all touch events in an Android WebView (or scrolling in particular)? I would like the activity to handle all touch events. ...

Does iPhone and iPad support for three, four finger touch gestures?

Hi, I wanted to know does iPhone and iPad gives support for three and four finger touch? I have browsed a lot but i do get information only for Mac book touch pad ...

Really weird iPad touches bug with UIImageView

G'day guys, I currently have a really weird bug with touches being responded to in my UIImageView. I have a gallery pane in my iPad app, which is just a background imageview, and then a series of six UIImageViews that the user can touch to change the background view, organised like: 1 2 3 4 5 6 On the right side of the app. The butto...

PictureScrollField issue with indicators

I am using PictureScrollField in my BlackBerry application to create a carousel-like feature. I'm also adding indicators at the bottom (circles) which shows which image out of the 5 in the carousel is being shown. I update my indicator when I recieve a touchEvent (i.e as I'm dragging the scroll field) by grabbing the selectedImageIndex(...

Google Chrome touch events not firing

I'm building a touchscreen kiosk using Chrome (7.0.536.2 dev) in kiosk mode on a Windows 7 PC with multi-touch display. I can see that the ontouchstart event is available (by inspecting the window object in Webkit Web Inspector) but it never fires. If I write the following code, the onclick event fires when I touch the screen but the on...

UIButton event 'Touch Up Inside' not working. 'Touch Down' works fine.

I've got a UIButton in a UIView, which is in a UIViewController that I've allocated and inited from a .xib file. When hooking an IBAction up to the 'Touch Down' event of a UIButton it triggers correctly. But if I hook it up to the 'Touch Up Inside' event it doesn't respond. Other events don't work either. 'Touch Drag Enter', 'Touch Dra...

[cocos2d] detecting a touch anywhere without interfering with app

I'd like to be able to know when any location on the screen is touched so I can show an effect. I don't want to capture the input or otherwise interfere with it, though. I tried setting my scene as a targetted delegate with swallowsTouches to NO but it wouldn't capture the input when I touched a CCMenu I had on there. I then tried cre...

UIButton moving and touch

I've read several topics to moving a UIButton and can touch the button when its moving. Now i'm using a UIView beginAnimation, but the button can't be touched when its moving. I've also read something about a NSTimer, but this is not the best way to do in my project. Is there another way, someone has the same problem? Thanks for any h...

[iPhone sdk] Passing touch events to appropriate sibling UIViews

I'm trying to handle touch events with touchesBegan in an overlay to a parent UIView but also allow the touch input to pass through to sibling UIViews underneath. I expected there would be some straight-forward way to process a touch event and then say "now send it to the next responder as if this one didn't exist", but all I can find i...

Determining which view touch was in for all touches

I want to determine which view touches occurred in for the entire application, for the purpose of logging touches so that I can go through the logs later and determine what the user did. I know I could subclass UIView and override touchesBegan/Ended to log those, but I am using many instances of UIButton, UISlider, etc in Interface Build...

How to get an event in a service when the screen is touched ?

I would like to implement a service in Android that basically should monitor the time elapsed since the user didn't touched the screen. For example the user opens Internet or Adobe Reader, starts reading and don't interact anymore withe the touchscreen. I want that my running service know the time since the user didn't touched the screen...

touchdraginside-actions

Hi all! I got a question about TouchDragInside Actions. I have a button which is connected to two actions. The first action is a TouchUpInside-action, which set the view's alpha to 1.0! The second action is a TouchDragInside-action, which should set the alpha from my view to 0.0. But i want that this action happens only after i slid...

Unresponsive resistive screen

Hello, I dont know if it is a good place to ask this but I am going to give it a shot. There is a resistive screen for the HTC Tattoo. The owner removed the sensor plastic off the screen and accidentally wiped a substance off the screen (the part with the sensor plastic off). Now when the plastic is put back on, the screen does not res...

how to detect the touch (CGPoint) of a scroll view in its content size in iphone?

Hi, I want to detect the touch (CGPoint) of a scroll view in its content size .If i detect the touch in the scroll i get the CGPoint only with reference to the scroll view frame but i want the position with reference to content size. Here is my code -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch* t; NSLog(@"...

UIView Touch event at the bottom of the screen not fired

Hello, I am encountering a strange problem. I created a UIView that takes place at the bottom of the screen (0,431,320,49) and then I want to deal with touch events. When I touch the upper side of the UIView, it works. But when I touch the bottom side (I mean, more than 20px in relative position), the touchBegan event is not fired. It...

Adding video using sencha

I want to add a youtube video in mysite using sencha.i use the follwing code var pnl = new Ext.Panel({ layout: { type: 'vbox', pack: 'center' }, items: [{ xtype:'video', url: "space.mp4", loop: true, width...

sencha touch and charts

Hello, Has anyone been able to incorporate Charts and graphs into Sencha Touch? If so, an example would be appreciated. Thanks ...

Getting touch event in any view (Android)

Hi, I need to make a service that capture all touch events, not in a specific view or when an specific activity is open. This service is started when the boot is completed (and I have an app to stop/play this service when I want it). So it write something (in a Toast) when the user touch any place in the screen. Can I do this? Or only ...

How do Windows 7 Touch events work?

Specifically are they published to the default port 3333 via UDP? ...

Get the touch direction on Android

Hi, I want to ask that is that possible do in android catch the in the touch mode catch the scrolling direction ? When user touch on the screen left to right, can I catch the change ? If it is possible which listener can ı use ? I found some of the methods and listeners but I 'm not sure that therse are represent my requirement . http:...