how to translate the following Applescript to appscript:

tell application "System Events"
    key code 0 using command down
end tell

I want to perform "Command + A"-like short cut, i.e., select all texts.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Look at the application ASTranslate which was installed as part of Appscript. It translates Applescript to Appscript for Python or Ruby. Be aware it just traps Apple Events and thus won't translate Applescript structures like loops or the like. It's very easy to use. Just past your Applescript in one pane, hit cmd-R, and it'll generate the translated Appscript + Python code. For your example it is

app(u'System Events').key_code(0, using=k.command_down)

While occasionally you'll find something that won't work quite right in general ASTranslate is an essential tool for using Appscript.

link|improve this answer
Very nice, it's very useful, saving me a lot of time from finding solutions in development. Thanks. – user435657 Sep 25 '10 at 0:55
feedback

Bellow is the usage of keystroke of Applescript via Python, which is hard to search:

http://www.agapow.net/programming/python/applescript-via-python

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.