Here's some macro pseudo-code I'm trying to assign to the Shift-Tab key:
My goal is to prevent Shift-Tab from tabbing forward (which I find bizarre) but backspace twice, but only if text is not selected (i.e., I don't want to lose Shift-Tab's normal behavior of un-tabbing selected text, if any text is selected).
As far as I can tell, this is not possible with the very limited macro language. Any tips are appreciated.
Thanks
Bill
Code: Select all
IfSel
[do what Shift-Tab normally does if text is selected]
Else
[backspace twice]
EndIf
As far as I can tell, this is not possible with the very limited macro language. Any tips are appreciated.
Thanks
Bill