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 settable preference and invoke that method accordingly.)
Is there some conventional way to translate from a method name to a global preference?
While many apps expose user preferences that may be set via 'defaults write ...' shell command, is there something similar but for the various methods provided by Apple?
(Apologies for not being an ObjC coder yet, so I'm likely phrasing the questions improperly.)
Specifically, I'm interested in re-introducing the trackpad option to DISABLE "Ignore accidental trackpad input" that went away late into 10.5.x when unibody macbooks were introduced. The developer docs indicate that setWantsRestingTouches method and isResting property of NSTouch class are the hooks for resolving this behavior on an app-specific level. I'm aiming for a deeper level than that.
Thanks!