Tagged Questions
3
votes
1answer
85 views
Ruby way of handling shell command that evokes a MacOS securityd window
I have a simple problem that I'd like to see if people here can help me with. Currently, I'm writing some test automation to handle a simple in house command line tool that dumps the contents of a ...
2
votes
1answer
350 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
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
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
72 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
0answers
32 views
rb-appscript and AEType.new(“ctxt”)
I'm trying to use rb-appscript to automate a build process using Xcode. I'm having trouble getting the text value of elements which I believe should return text. Take, for example, the name of a ...
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
2answers
122 views
Turn id back into a reference object in AppScript objective-c
I'm writing an app that talks to Mail using Objective-C-appscript (objc-appscript). I want to make a copy of the currently selected mail messages and perform some processing on it at a later -- at ...
0
votes
2answers
161 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
4answers
760 views
AppleScript: I copied the Finder selection to the clipboard. Can I get the full path to the copied items?
I have one or many files and/or folders selected in the Finder. I manually copy them to the clipboard/pasteboard (⌘C).
To keep things simple, let's say I just copied one single normal file. The ideal ...
0
votes
1answer
123 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
1answer
421 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 = ...