Tagged Questions
The trackpad tag has no wiki summary.
7
votes
2answers
112 views
Is there any support for mouse wheel and Apple track-pad in Silverlight 5?
One of my Silverlight applications has some users to use it on Apple Macs. They complain that the mouse wheel and track-pad don't work.
From the research I've done, it seems that this isn't supported ...
7
votes
2answers
327 views
How can I access my trackpad in C#?
I'm pretty bored this weekend.
I've decided to build a morse code application where I can use my trackpad to tap morse code in and have my app sound it out.
I told you I was bored! :D
Is there some ...
5
votes
3answers
580 views
know the position of the finger in the trackpad under Mac OS X
I am developping an Mac application and I would like to know the position of the finger in the trackpad when there is a touch.
Is it something possible and if yes, do you have any idea to achieve ...
4
votes
5answers
480 views
How to use trackpad scrolling in .Net
My WinForms app uses the mouse wheel, subscribing to the Control.MouseWheel event. How can I get it to work with scrolling methods from other input devices, in particular "finger along the edge" ...
3
votes
1answer
872 views
JQuery - Can I query the MacBook Pro Trackpad?
Can I use JQuery to query the Trackpad?
So I can do something like this:
Pseudo Javascript (JQuery)
$(document).keyInput().trackpadTwoFingersLeft(function() {
$('#div ul').animate({left: ...
2
votes
1answer
213 views
How to get pointing device's coordinate on mac trackpad?
I'd like to get the finger's position when user makes a gesture on the trackpad.
I've already hooked on to swipeWithEvent that triggers on swipe. Within that NSEvent there's a method deltaX that ...
2
votes
1answer
1k views
Touchpad's absolute touch coordinates
Is it possible to read input directly from a Alps touchpad? I am trying to turn my touchpad into a cheap drawing tablet so I need to read the raw unprocessed x and y coordinates of where it was ...
2
votes
2answers
1k views
MacBook Trackpad Gestures: Move Windows like in Minority Report
With the MacBook Trackpad I can scroll documents by using two fingers or zoom into the screen with two fingers and Ctrl pressed.
What could be very useful is to move the currently active window with ...
1
vote
2answers
97 views
Java trackpad 2-finger scroll listener
how can i detect a 2-finger scroll on a laptop trackpad in java? I've been searching google and here but can't find anything on scrolling using a trackpad let alone how to listen for it. any help ...
1
vote
1answer
130 views
How do i get the arrows on jQuery jScrollpane to show? (& mousewheel behaviors)?
i am using jScrollpane to allow for overflow in divs.
The scrollbars are showing and working, (they move and allow content to scroll)
but the arrows are not showing.
Also, the mouse wheel / ...
1
vote
1answer
185 views
1 Finger Right/Left Swipe on MAC OS X
I need to catch the event of one finger right/left swipe for the Magic Mouse or two finger swipe for the Trackpad.
So far I've managed to set the event for two finger swipe on the magic mouse/ three ...
1
vote
0answers
146 views
Is it possible to switch off the MacBookPro TrackPad programatically with C# (windows on bootcamp)?
Is it possible to switch off the MacBookPro TrackPad programatically with C# (windows on bootcamp)?
I have tried using TrackPadMagick but it doesnt support the latest MacBookPro or the Apple Magic ...
1
vote
1answer
244 views
Deselect any trackball/trackpad selection
Is there a way to programmatically deselect/wipe whatever the user has selected with the trackball/trackpad?
When I hit the back button on an Activity, the Activity it falls back to has a button that ...
1
vote
2answers
276 views
Overriding trackpad click
I have a ListActivity; and for each item in the ListView there is a checkbox.
When you touch a list item, another Activity launches.
When you use the trackpad/trackball to highlight (read: select) ...
0
votes
0answers
97 views
Magic trackpad gesture recognition
Does somebody know what the easiest way would be to work with the apple magic trackpad and just have it recognice gestures(2 Finger up/down swipe and left/right swipe and tap) and not be working as a ...
0
votes
0answers
37 views
Apple Magic Trackpad Gestures carried out as personalized Commands in Windows
I want to have the Apple Magic Trackpad to work on Windows, but NOT as a regular Mouse! I will need the normal Trackpad Gestures to work with a c# Application (i.e. when carring out a 2 finger swipe ...
0
votes
0answers
59 views
Qt: Avoid finger scrolling to go into Wheel event
I am using Qt 4.7 and I couldn't get the 2-finger-swipe scrolling working properly on Mac's trackpad/magic pad.
On QListView, doing 2-finger-swipe will trigger a wheel event. However, the default ...
0
votes
1answer
17 views
Windows driver creation
I would like to try creating a custom driver for a trackpad of mine. Could you please recommend an opensource driver to start with? My search turned out nothing, so I hope there actually any skeleton ...
0
votes
0answers
207 views
Trackpad Freezes on Ubuntu 11.10 often [closed]
I have newly installed Ubuntu 11.10 on my system and as soon as I start my system the trackpad freezes and I have to restart the system once again and there after every few minutes this keeps ...
0
votes
0answers
72 views
Emacs 23 horizontal scroll using trackpad on macbook pro [closed]
I am using a Macbook Pro with the Macintized version of Emacs 23.3. I would like to use the trackpad to do horizontal as well as vertical scrolling. I found this post and have tried the solutions ...
0
votes
0answers
47 views
Applescript to listen trackpad events?
I know this one might seem an awkward and silly question but is it possible to write an applescript that intercepts a trackpad heavy pressure (the click) and generates an event?
To be more specific ...
0
votes
1answer
97 views
Mac + Cocoa - problem with trackpad scrolling (two fingers)
For some reason when i scroll with trackpad it scrolls in X direction or Y direction and not in both in the same time.
in scrollWheel method, either [event deltaX] == 0 or [event deltaY] == 0
I want ...
0
votes
0answers
174 views
Generate and post Multitouch-Events in OS X to control the mac using an external camera
I am currently working on a research project for my university. The goal is to control a Mac using the Microsoft Kinect camera. Another student is writing the Kinect driver (which will be mounted ...
0
votes
1answer
371 views
Horizontal Scrolling in Firefox on Touch (magic mouse/macbook) with no Scroll bar
This only happens in firefox with a touch gesture device like the magic mouse or a macbook/macbook pro, but on some websites (some I've done and some I haven't) you can scroll horizontally even though ...
0
votes
1answer
58 views
How to change default/preference for ObjC method on MacOSX?
MacOSX 10.6 has a method setWantsRestingTouches with a default of No, but I'd like to somehow change the default to YES. (Otherwise, I'd have to request developers of each app I use to make this a ...
-1
votes
2answers
348 views
Mac cocoa - how can i detect trackpad scroll gestures?
I want to detect scroll gestures (two fingers on trackpad).
How should i do that?