The py-appscript tag has no wiki summary.
1
vote
2answers
114 views
Translate AppleScript to Python appscript (`do javascript`)
This is the AppleScript template:
tell application "Adobe Photoshop CS5"
set theFile to alias “Application:Documents:MyFile” open theFile
do javascript (file <path to Emboss.jsx>) with ...
1
vote
1answer
61 views
py-appscript filter with datetime
I am trying to use the day field of a datetime property as a filter when selecting events from an iCal calendar.
The following doesn't seem to work (to select all events for the current date):
cal = ...
1
vote
1answer
125 views
py-appscript & events
Is it possible to subscribe to events using py-appscript ?
Example: I'd like to get a callback when a user changes a rating on iTunes.
0
votes
0answers
58 views
Changing desktop in OS X Lion with Python AppScript library
My goal is to change every Mac OS X Lion background (on each Mission Control spaces and on each screen) using the py-appscript.
I've found a piece of code on SO that changes the background :
finder ...
0
votes
0answers
9 views
py-appscript does not safe changes to Address Book?
this is likely an FAQ/error on my behalf, but I cant find anything.
This python script:
from appscript import *
ab = app('Address Book')
ret = ab.make(new=k.person, ...
0
votes
2answers
64 views
Python appscript OSAX display_dialog: how to move it to foreground
I am playing around with the example from here; esp. I have this code:
from osax import *
sa = OSAX()
print sa.display_dialog("Python says hello!",
buttons=["Hi!", "Howdy!", ...
0
votes
0answers
25 views
Python appscript File type usage of non-existing files. error -1700
I tried to follow some Python appscript examples from here.
The following code
import mactypes, aem
mactypes.File("foo.jpg").desc.coerce(aem.kae.typeFSS)
gives
MacOSError: -1700
Why?
0
votes
1answer
79 views
Python appscript error: OSERROR: -1700, Can't make some data into the expected type
from appscript import *
ps = app("Adobe Photoshop CS5")
s = ps.current_document.save
s._labelledargterms
Gives:
{'appending': 'DcXt',
'as_': 'fltp',
'copying': 'SaCp',
'in_': 'kfil',
...
0
votes
1answer
98 views
How do I export PSDs as PNGs with py-appscript?
I wrote a script to export PSDs as PNGs with rb-appscript. That's fine and dandy, but I can't seem to pull it off in py-appscript.
Here's the ruby code:
#!/usr/bin/env ruby
require 'rubygems'
...
0
votes
1answer
123 views
send key code to field
i want to simulate the pressing of the enter key using py-appscript
i already found this, but it seems to only output the newline
Translate Applescrip [key code 125 using command down] to appscript
...
0
votes
0answers
79 views
ASTranslate (appscript) has a runtime error (variable not defined) on what I think is valid appscript
I guess this is a bug report, but I don't know how else to contact the ASTranslate developers. I'd like to hear how to translate this AppleScript to appscript properly.
Here's the AppleScript (first ...
0
votes
1answer
164 views
How do I access all of the menu bar icons
I'm talking about the icons that show up on the right hand side of the menu bar. I can get access to that menu bar with (py-appscript)
app(u'System Events').processes[u'SystemUIServer'].menu_bars[1] ...
0
votes
1answer
97 views
Using appscript how can I accept self-signed SSL cert in Safari
I'm trying to automate some stuff which involves browsing to a https url. I'm using py-appscript with Safari on Mac OS X. But when Safari navigates to the https URL, since I have a self-signed ...
0
votes
1answer
71 views
appscript attribute error
I'm new to programming, and to python. I'm trying to use appscript in a python script to choose a pdf and a new destination folder, open the pdf in Adobe Acrobat Pro, OCR it, and save it in the new ...
0
votes
1answer
83 views
python appscript module - creating k. type objects
I'm learning and enjoying the appscript module, but I'm a little confused
about how to instantiate basic k. type objects.
for example, if I want to create a variable that holds a k.boolean value to
...
0
votes
1answer
151 views
Bouncing Python Application in Mac Dock when Accessing URLs with py-appscript
This has been a recurring, strange issue for me when accessing URLs using py-appscript, first in Safari and now in Chrome.
Whenever I run the script command to get the current URL in the terminal, ...