Tagged Questions
The appscript tag has no wiki summary.
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
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
2answers
97 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
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
95 views
how to integrate graphs and pie charts in Google sites as a form?
How to integrate pie chart and graphs in google sites can anyone please help me out with google apps script
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
250 views
How do I add artwork to an iTunes track with obj-c AppScript?
aTrack is an ITReference* object, value is an NSImage* object, initialized via a URL to a jpeg.
[[[[[aTrack artworks] data_] set] to:value] send];
I get the following message in GDB:
2010-03-09 ...
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
458 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
48 views
Is it possible to reduce the startup time of MacRuby scripts which use the ScriptingBridge?
I would like to use MacRuby with ScriptingBridge instead of AppleScript to control Mac applications which support AppleScript. I used to do this using appscript, which is effectively deprecated, hence ...
0
votes
1answer
31 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
11 views
How can i open safari and browse an URL by appscript python
from appscript import *
app(u'Safari').activate()
title = app(u'Safari').do_JavaScript(u'document.title', in_=app.documents[1])
app(u'Safari').documents[1].URL.set(u'http://www.baidu.com')
...
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
0answers
23 views
An appscirpt code to automatically grab and paste data from NSE site into Google Spreadsheet
I need an automatic script which will grab the data from:
http://www.nseindia.com/archives/archives.htm
and automatically paste it in google spreadsheet.
Later, I will be querying the data.
Any ...
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
0answers
105 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
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
84 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
71 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
162 views
How to get path of currently selected file in Finder with rb-appscript in OSX Lion
In OSX 10.6 I used the following code to do something to each currently selected file in Finder:
app('Finder').selection.get.each do |item|
url =CGI::unescape(item.URL.get)
puts url
...
0
votes
0answers
48 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
23 views
Setting Excel cell value using Objc-AEM
I'm trying to set the value of an Excel cell using objc-aem. I can do this using objc-appscript with:
MEApplication *microsoftExcel = [MEApplication applicationWithName: @"Microsoft Excel.app"];
...
0
votes
0answers
129 views
When trying to install AppScript I get compilation errors
when trying to build appscript 0.6.1 for Ruby (so rb-appscript) for either 1.8.7 or 1.9.2 after issue (with or without sudo) gem install rb-appscript I get the following compilation errors:
ld: ...
0
votes
0answers
71 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
2answers
154 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
0answers
25 views
Appscript hangs on OSX 10.5.8 using Apache2 Django
I've incorporated appscript into a python 2.6/django installation, and it works fine when served with the django development server, but when using Apache2 I get this:
The process has forked and ...
0
votes
1answer
150 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
57 views
rb-appscript: Accessing parent reference?
Is there an easy way to find the parent element reference of a reference?
For example, suppose I have the following reference:
ref = app("System Events").processes["Safari"].windows[1].buttons[1]
...
0
votes
0answers
53 views
rb-appscript: Using filters with entire_contents possible?
Is there any easy way to find a reference within the entire contents a reference?
For example, suppose I want to find a pop-up button in a window. I could do something like:
app("System ...
0
votes
1answer
89 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
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
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
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
2answers
418 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
759 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
208 views
How would I write the following applescript in Obj-C AppScript? ASTranslate was of no help =(
The translation tool isn't able to translate this working code. I copied it out of a working script.
set pathToTemp to (POSIX path of ((path to desktop) as string))
-- change jpg to pict
tell ...
0
votes
3answers
269 views
How would I write the following rb-appscript in objc-appscript?
The documentation in the appscript objc-trunk randomly uses ruby in the section called "Performance Issues".
require "appscript"
include Appscript
desiredEmail = 'sam.brown@foo.com'
p app('Address ...
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:
...