When on MS Windows, I connect A4Tech X7-G100, and fire up HID Macros. Not sure, if it would work for you.
Just tried something with that program.
Didn't detect left/right scroll wheel on Logitech M705 mouse.
Used Autokey program with a script I found to remap left scroll wheel to "O" with drag lock.
This works cool.
With left scroll wheel nudge I can Orbit with lock in Sketchup.
Now I gotta get a right scroll wheel nudge to get the "H" or "hand/pan" tool to activate and lock as well.
This is what it's doing..Logitech software custom mouse wheel assignment.
Left wheel "presses" F11...right wheel "presses" F12
Autokey basically allows for automatic toggle somehow.
I'm a dummy with Autokey scripts. Here's the script I have running.
-----------------------------
toggle=0
F11::
if (toggle ^= 1)
{
MouseClick,Middle,,,,,D
}
else
{
MouseClick,Middle,,,,,U
}
Return
---------------------------------------
How do I make it do right wheel toggle of the Sketchup "H" key?
Should I post this in another forum spot?