Sendkeys does not respond to command keys any more.
This:

Code:
Break On Cls

Run("Notepad.exe")
Sleep(1)
$nul = SetFocus("Untitled – Notepad")


$nul = SendKeys("asdfasdf{ENTER}")
$nul = SendKeys("asdfasdf{BACKSPACE}")
$nul = SendKeys("asdf{CAPSLOCK}afaf")



gives this line in notepad:
asdfasdfEasdfasdfBasdfCafaf

It only projects the first letter of the command key (shown in bold in the example)
_________________________
The Code is out there