Try it yourself:
In file explorer when you keep the alt-key held down then keytips appear on the ribbon.
I want to prevent this behavior. In short, I want to disable alt-key held-down behavior but keep alt+anyOtherKey shortcuts enabled.
In AutoHotkey I tried the code:
Alt::return
It disables alt-key single-press but does not disable alt-key held-down behavior. Any ideas?
Alt Up::Return
does prevent the keytips... (it also prevents all normal alt-combinations from working.) If you have anAlt & [letter]::
hotkey, this negates theAlt Up::Return
hotkey. I also looked to see if there was some registry setting that controls keytips or keytip delays, but found nothing. – EJE