Hey, I'm an avid user of your script, it's the best ever for pen tablets and I tried every one of them.
Sometimes I need to do right button drag, so I just do a CTRL+right drag to bypass the script. However I found recently that it doesn't always work with some programs, so I was in need to add a function to pause the script. It might be quite useful for people like me who jump between different input devices and don't always need the script working.
I just added a simple bit of code I found on AHK forum (pasted below), but I'm not into doing git and pull requests, so I'm just attaching it here, maybe someone finds it useful or you'd like to add something like this to the script. Maybe it could use a switch to toggle the script off on startup.
ScrollLock::
Suspend, Off
Pause, Off, 1
If (toggle := !toggle) {
Suspend, On
Pause, On, 1
}
Hey, I'm an avid user of your script, it's the best ever for pen tablets and I tried every one of them. Sometimes I need to do right button drag, so I just do a CTRL+right drag to bypass the script. However I found recently that it doesn't always work with some programs, so I was in need to add a function to pause the script. It might be quite useful for people like me who jump between different input devices and don't always need the script working. I just added a simple bit of code I found on AHK forum (pasted below), but I'm not into doing git and pull requests, so I'm just attaching it here, maybe someone finds it useful or you'd like to add something like this to the script. Maybe it could use a switch to toggle the script off on startup.
ScrollLock:: Suspend, Off Pause, Off, 1 If (toggle := !toggle) { Suspend, On Pause, On, 1 }