Tagged Questions

1
vote
0answers
44 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
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
2answers
102 views

Using rb-appscript to write a bulleted/numbered list in pages or textedit

I need to use rb-appscript to create a new Pages document that contains bulleted and numbered lists. Looking in to this, I see that paragraphs have a property called list_style, but I'm not familiar ...
1
vote
1answer
227 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
287 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] ...
0
votes
1answer
40 views

How can I use rb-appscript to drive Mac OS Finder's “Connect To Server” menu item

The end goal is to write an automated test in Ruby/Cucumber for connecting to a WebDAV server and testing authentication, CRUD and load/performance in Mac OS X. I'm trying to simulate user behavior ...
0
votes
0answers
114 views

AppleEvent handler from OSAX causes other AppleEvents to fail

The code from appscript import * ps = app("Adobe Photoshop CS5") ps.do_javascript works if Photoshop is not running yet. In that case, it starts up Photoshop and it finds the do_javascript method. ...
0
votes
0answers
55 views

Scripting Interarchy 10 with rb-appscript

I have a simple Ruby/appscript program (see below) that I use to drive the 'mirrorupload' function of the file transfer utility Interarchy, by Nolobe. The program works well with Interarchy 9. ...
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
0answers
36 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
2answers
180 views

AppleScript from Java on Mac OS X 10.6?

To call AppleScript from Python, I use the "appscript" bridge: http://appscript.sourceforge.net/ What can I use to call AppleScript from Java on Mac OS X 10.6+?
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
2answers
124 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
2answers
427 views

Translate Applescrip [key code 125 using command down] to appscript

how to translate the following Applescript to appscript: tell application "System Events" key code 0 using command down end tell I want to perform "Command + A"-like short cut, i.e., select all ...
0
votes
4answers
806 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
316 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"} register as ...