Calling Mac programs from Python instead of from AppleScript

Kevin Walzer kw at codebykevin.com
Wed Mar 19 16:10:38 EDT 2008


dvschorre at sbcglobal.net wrote:
> When I'm running Script Editor, I can get Maya to draw a sphere by
> typing:
> 
> tell application "Maya"
> 	execute "sphere"
> end tell
> 
> When I try this using Python, I get this error message:
> 
> IDLE 1.2.2
>>>> app('Maya').execute('sphere')
> 
> Traceback (most recent call last):
>   File "<pyshell#0>", line 1, in <module>
>     app('Maya').execute('sphere')
> NameError: name 'app' is not defined
> 
> Maybe I need to load some libraries first.
> 
> Please help me to get started.
> 
> Thanks
>  Dewey V. Schorre
> 

Take a look at appscript:

http://appscript.sourceforge.net/

-- 
Kevin Walzer
Code by Kevin
http://www.codebykevin.com



More information about the Python-list mailing list