|
|
|
|
|
by fifafu
3220 days ago
|
|
BetterTouchTool has always had the "mimicking standard gestures" predefined actions which really send gesture events and don't just send shortcuts. However it currently only supports three finger swipe left and right (which are the most useful to go back and forward). I probably should look into how to synthesize other gestures as well (there is no official API for synthesizing gestures but afaik people have reverse engineered how to do it, e.g. https://github.com/calftrail/Touch/tree/master/TouchSynthesi...) For three finger swipes I'm using a trick to synthesize them without private API, but for other swipe types I'd need to synthesize them using the private API... However there haven't been too many requests for other event types thus it's not very high up on my TODO list. (I'm the author of BTT) Also BTT allows you to bind them to many many predefined actions in addition to keyboard shortcuts, e.g. "Trigger Menubar Menu Item" which can be very powerful. |
|