Tagged Questions

2
votes
1answer
348 views

appscript on OSX 10.6.3 / Python 2.6.1

I am having some trouble getting appscript installed on OS/X 10.6.3 / Python 2.6.1. When I issue sudo easy_install appscript I get "unable to execute gcc-4.2: No such file or directory". Even when ...
1
vote
0answers
39 views

Does the Rdio Desktop API give tracks unique IDs?

I've built a small desktop app for myself that logs listens from iTunes and Rdio so I can create powerful playlists based on how I listen to music over time, but it requires each track to have a ...
1
vote
1answer
48 views

py-appscript expects arguments

I want to make a Python script to control VLC. VLC can be controlled through AppleScript and by using py-appscript I can run AppleScript code from Python. Using AppleScript I can play/pause VLC by ...
1
vote
2answers
99 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
60 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
120 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.
1
vote
1answer
223 views

How does one feed a list of files into an app with appscript and Python?

Get your newb-shields up, I'm about to sprinkle you with some. I'm trying to get Photoshop CS4 to open a folderful of JPEG images with AppScript+Python, which could be described like so in BASH: ...
1
vote
1answer
469 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 returns the selection to ...
1
vote
1answer
122 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 string (encoded in ...
1
vote
2answers
284 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').to_dos()[0] ...
1
vote
2answers
459 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 fileName = sys.argv[1:] ...
0
votes
0answers
31 views

Ideal method for polling iTunes

I'm using the following code to log all listens in iTunes to a sqlite3 db: #! /usr/bin/python import sqlite3 import time import datetime import Foundation from appscript import * it = app('iTunes') ...
0
votes
2answers
52 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
85 views

create small overlay window with Python on Mac, similar to Growl, with a button

On MacOSX, with Python: I want to create a small half-transparent overlay window, similar as a Growl notification. I want to have one ore more buttons on it. E.g. Automator also has such a window ...
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
72 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
64 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
75 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
144 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, ...
0
votes
1answer
94 views

Determine current Mac Chrome web page using Python (py-appscript)

So Chromium has officially added support for Applescript: http://code.google.com/p/chromium/issues/detail?id=27468 I assume that this also means Chromium can be accessed by py-appscript. The ...
0
votes
2answers
160 views

How can i access the file-selection in Path Finder via py-appscript?

Using the filemanager Path Finder on mac os x, i wanna retrieve the selected files/folders with python by using py-appscript. py-appscript is a high-level event bridge that allows you to control ...
0
votes
1answer
146 views

How to set value of current Numbers cell using Py-Appscript

This seems like a straightforward operation but I am stumped. How do you set value of current Numbers cell using Py-Appscript?
0
votes
1answer
385 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 current selection: ...
0
votes
3answers
555 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') data = ...