Ok, I mapped Note-Off to CapsLock, because I am used to other trackers having it there. But the other trackers disabled that key actually toggling capslock when I hit it. Would it be possible for MPT to do the same?
Good suggestion.
I don't think it will be much of a problem to implement this. Rewbs or Relabsoluness has to answer this though.
Its probably something like:
if key:capslock->press {
key:capslock->state = key:capslock->state +1
}
Which will initiate another capslock press and then executes the function.
How about doing the same for the ScrollLock key. I like having it assigned to "Follow Song".
You may use AutoHotKey http://www.autohotkey.com/ for this - it needs to be configured however.
AutoHotKey script to remap CapsLock to '=' key and ScrollLock to '-' :
CapsLock:: =
ScrollLock:: -
Don't forget to disable AutoHotKey when you exit ModPlug :wink:
Thats not a workable solution.