07-28-2008 02:06 PM
I need to simulate a wheel right and a wheel left action.
I have successfully used the following to scroll up and down:
EventInjector.TrackwheelEvent.THUMB_ROLL_UP
EventInjector.TrackwheelEvent.THUMB_ROLL_DOWN
Any ideas?
Solved! Go to Solution.
07-28-2008 02:09 PM
On trackwheel devices, using Alt + scrolling is used by many applications for left and right movement.
If you are targeting trackball devices, you can navigate in any direction by injecting an EventInjector.NavigationEvent event.
07-28-2008 02:55 PM
Thank you!
I was confusing the trackball with the trackwheel. The NavigationEvent solved my problem.