Tagged Questions

1
vote
1answer
75 views

Reading bytestreams in Python

I'm using Python appscript to write artwork to my iTunes Songs. I have a file stored in .pict format and when i use the normal open and read() routines, it reads the content as a s …
0
votes
1answer
42 views

Set Selection in Numbers (Python/Appscript)

How do you set the selection for a table in Numbers using py-appscript? This seems like it should be really simple to do but the solution is frustratingly evasive. I can get the c …
0
votes
1answer
41 views

Getting the Current Table in Numbers (Python/Appscript)

How do I access the current table in Numbers using py-appscript? For posterity, the program I created using this information clears all the cells of the current table and retur …
0
votes
1answer
42 views

Appscript to write iTunes artwork

I'm trying to capture artwork from a pict file and embed into a track on iTunes using python appscript. I did something like this: imFile = open('/Users/kartikaiyer/temp.pict','r' …
0
votes
1answer
14 views

How can I invoke custom Scripting Additions using Python Appscript?

Assuming I have a new scripting addition, does appscript recognize them, and how do you invoke them using appscript?
0
votes
2answers
40 views

Getting multiple properties at the same time in Appscript

I am using Appscript - a Python interface to AppleScript - in a project of mine that basically gets data from a Mac application. Here is a sample code: asobj = app('Things'). …
0
votes
1answer
45 views

Apple Event Handler Failure (Ruby/AppScript) while trying to growl

I'm trying to growl from Ruby/Appscript, based on this sample Applescript code: tell application "GrowlHelperApp" set the enabledNotificationsList to {"Mail Notification"} …
0
votes
1answer
91 views

How to read the background color of a cell through a (ruby) script from Microsoft Excel on Mac Osx?

I want to get the background color of a cell of an Excel worksheet. I have already tried the following: begin; require 'rubygems'; rescue LoadError; end require 'appscript' f = Ma …
0
votes
1answer
127 views

Apple Event Handler Failure (Python/AppScript)

I have written the following really simple python script to change the desktop wallpaper on my mac (based on this thread): from appscript import app, mactypes import sys fileNam …