Re: key strokes
Re: key strokes
- Subject: Re: key strokes
- From: KOENIG Yvan <email@hidden>
- Date: Sat, 12 Mar 2011 22:21:19 +0100
Le 12 mars 2011 à 21:58, louie a écrit :
>
> Hi all,
> I am trying to send a key stroke to the screen reader Voice over. The key stroke is:
> shift + option + command + c
> This key stroke tells voice over to copy the last spoken phrase to the clip board.
> Below is the script that I am working with.
> Thanks for any help.
>
> tell application "VoiceOver"
> tell application ¬
> "System Events" to keystroke "c" using ¬
> {shift down, control down, option down}
>
> end tell
You wrote that the required shortcut is :
shift + option + command + c
but you coded
shift + option + control + c
in your script.
So I guess that :
tell application "VoiceOver"
tell application ¬
"System Events" to keystroke "c" using ¬
{shift down, command down, option down}
end tell
Would behave better.
Yvan KOENIG (VALLAURIS, France) samedi 12 mars 2011 22:21:11
_______________________________________________
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