Re: Some help please
Re: Some help please
- Subject: Re: Some help please
- From: Christopher Stone <email@hidden>
- Date: Sat, 18 Nov 2017 04:24:04 -0600
On 11/17/2017, at 19:08, dan d. <email@hidden
<mailto:email@hidden>> wrote:
> The below bombs when I run it.
Hey XB,
What do you mean bombs?
Fails?
Crashes?
> tell application "System Events"
> keystroke "a" using {control down, option down, shifft down }
> end tell
>
> What am I missing or have completely over looked?
You have double characters in shift -- shifft.
After fixing the spelling error, I ran the following script that uses the
freeware utility Key Codes from Many Tricks Software.
https://manytricks.com/keycodes/ <https://manytricks.com/keycodes/>
Key Codes shows that all the keystrokes are going through.
--------------------------------------------------------
tell application "System Events"
tell application process "Key Codes"
set frontmost to true
end tell
delay 1
keystroke "a" using {control down, option down, shift down}
end tell
--------------------------------------------------------
--
Best Regards,
Chris
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden