AppleScript is the Mac OS scripting language.
22
votes
4answers
3k views
OSX Lion AppleScript : How to get current space # from mission control?
I'm trying to figure out how to get the current space # from mission control. Source would be helpful, but more helpful would be info on how to figure this out myself. I've written a few ...
18
votes
1answer
427 views
How to automate creation of new XCode targets from Applescript/Automator/Shell Script
I am currently working on a way to automate the process of adding new targets to my XCode projects. One target has to be added to multiple XCode projects and each target in the different project needs ...
14
votes
6answers
3k views
How to programmatically generate a PDF from any document on OSX?
I'm working on a project for OSX where the user can pick a collection of documents (from any application) which I need to generate PDF's from. The standard Macintosh Print dialog has a PDF button ...
9
votes
4answers
4k views
How to make the hardware beep sound in Mac OS X 10.6
I just want that Mac OS X 10.6 does a hardware beep sound like in open suse and other distributions. I tried following approaches
Terminal -> beep = -bash: beep: command not found
Terminal -> say ...
9
votes
10answers
5k views
Using AppleScript to grab the URL from the frontmost window in web browsers: The definitive list
I built a [widget][1] that grabs the URL from the frontmost window in Safari, then allows you to shorten it using the tr.im API. Works sweet as.
I want to make this more flexible, so am investigating ...
8
votes
6answers
978 views
How do i add applescript support to my Cocoa app
i am new to the world of cocoa programming, i want to add applescript support to my app.
Also the example at apple's website seems out of date
8
votes
4answers
3k views
Applescript equivalent of “continue”?
I have a simple 'repeat with' in an AppleScript, and would like to move on to the next item in the "repeat" conditionally. Basically I'm looking for something similar to "continue" (or break?) in ...
7
votes
2answers
119 views
Does Ruby offer a mechanism for responding to Apple Events on OS X?
I'm working on a desktop application for OS X using Ruby-Tk, and I would like to provide an Apple Events interface for the application. This means that the application would define a dictionary of ...
7
votes
4answers
2k views
Avoiding AppleScript through Ruby: rb-appscript or rubyosa?
Hello fellow Mac rubyists and AppleScript haters,
For those of you that have experience with both rubyosa and rb-appscript, I'd like the hear the pros and cons of each, which one you decided to stick ...
7
votes
2answers
865 views
Emacs talking to XCode
I use emacs on my mac to program in Xcode. It works really well for the most part. I double click on a file in xcode, and it pulls it up in an existing emacs window. I compile, and get syntax errors, ...
6
votes
1answer
489 views
+50
applescript to copy folders into Xcode?
I'm having some trouble copying folders into XCode projects with AppleScript. Without Applescript I drag the folder into Xcode.
I've used a similar Applescript handler, as the one shown below, to ...
6
votes
4answers
3k views
Can the UI Automation instrument be run from the command line?
Is there a way to open the UIAutomation instrument through the terminal?
Will it be possible to write an AppleScript to open Apple's UIAutomation tool and load the application to be tested?
Can you ...
6
votes
4answers
4k views
Open URL in new Safari tab with AppleScript
Is it possible to use AppleScript to open a link in a new tab in Safari?
Thanks in advance!
6
votes
1answer
175 views
Applescript iTunes dictionary explanations
I am wondering what the different color schemes mean in the following:
What does the blue C tag mean? and the purple one?
Disclaimer: absolute OSX newbie here... please be gentle ;-)
6
votes
2answers
521 views
Import AppleScript methods in another AppleScript?
Is there a way to use defined AppleScript methods in other AppleScripts which reference the original AppleScript with something similar to import (f.e. in PHP)?
I wrote a methode to set Skype status ...
6
votes
2answers
1k views
How can I programatically move one Terminal.app window to another space?
If I have several OS-X Terminal.app windows open, how can I move one Terminal window to another space?
I'm happy to use any scripting or programming language to achieve this, but would prefer ...
6
votes
2answers
837 views
Receive Adium messages in Applescript
I'm trying to write a simple chat bot for Adium, that will post "lol" and "haha" and answer basic questions in annoying group chats that some people keep adding me to.
I've covered the "lol" part ...
6
votes
3answers
4k views
Build and Run an xcode project via AppleScript
I'm trying to build an xcode project and run it through the iPhone Simulator via applescript. I'm aware of xcodebuild but it doesn't let you run the app in the simulator. I've gotten pretty close with ...
6
votes
3answers
2k views
How do I debug AppleScript?
What tips and tricks do you have for debugging AppleScript? Is there a debugger? If not, what is the best way to insert "prints" to display the value of variables? Is there a way to "pretty print" ...
6
votes
4answers
16k views
Applescript for a Newbie: Copy file to a new folder
I've also posted this on the macnn forums, but thought I may get a better response here.
I was hoping to find some help with using applescript (something I have never tried before, though I have a ...
6
votes
2answers
2k views
Is there a quick and easy way to dump the contents of a MacOS X keychain?
I'm looking for a way to dump (export) the contents of an OS X keychain into a file that I can easily process elsewhere, such as tab-delimited plaintext or something of the sort.
The Keychain Access ...
6
votes
6answers
865 views
How can I improve performance when adding InDesign XMLElements via AppleScript?
I have an AppleScript program which creates XML tags and elements within an Adobe InDesign document. The data is in tables, and tagging each cell takes .5 seconds. The entire script takes several ...
5
votes
1answer
263 views
How do I get Xcode to build and run using Applescript?
I am trying to get Xcode to build and run my project using Applescript. This is the same question as How to build & run Xcode with Applescript?, but I think that answer may be out of date, since ...
5
votes
2answers
249 views
Can an applescript “tell” call execute without visibly launching the application?
I have a Mail rule set up to launch the following applescript:
using terms from application "Mail"
on perform mail action with messages theMessages for rule theRule
tell application ...
5
votes
1answer
630 views
Can AppleScript listen for events?
I want to write a script that takes action when a document is opened on a certain application, or before an application quits, etc.
Is there a way to attach a script to an event in an application? ...
5
votes
6answers
700 views
Learning AppleScript
What resources would you recommend to pick up AppleScript. I come with a traditional C/C++ with Objective-C background.
I am also looking for tips on how to develop better and get faster ...
5
votes
2answers
868 views
Defining and executing simple AppleScript commands in a Cocoa app
I'm trying to add some scripting functionality to a Cocoa app that I've written. I've created an sdef (Scripting Definition File) for my project. So far I have been successful in accessing object ...
5
votes
4answers
4k views
Tell AppleScript To Build XCode Project
The following are the steps I would like to have:
launch xcode
open a specific xcodeproj file
build and debug it
quit xcode
The following is my first attempt to write AppleScript:
tell ...
5
votes
4answers
976 views
How to detect which Space the user is on in Mac OS X Leopard?
Mac OS X Leopard has a virtual desktop implementation called Spaces. I want to programatically detect which space the user is currently on.
Cocoa is preferable but AppleScript is acceptable if ...
5
votes
4answers
2k views
How can I change the main display via AppleScript?
From the Displays pane in System Preferences, I can manually change the main monitor by dragging the menu bar from one display to the other. I'd like to automate this and make it part of an ...
4
votes
1answer
75 views
Can a program written in Python be AppleScripted?
I want my Python program to be AppleScript-able, just like an Objective C program would be. Is that possible?
(Note, this is not about running AppleScript from Python programs, nor about calling ...
4
votes
1answer
158 views
Get the full network path of a file on a Mac - terminal
I'm trying to get the network file page e.g. smb://server.local/tech/file.pdf
You can see this information on a files "Get info" window but I can't see a way of getting this with the command line (or ...
4
votes
1answer
66 views
Why is the system beeping when I use AppleScript to set text in BBEdit from TextExpander?
I've written an AppleScript that is designed to fire when TextExpander notices a keystroke. It works fine when run from the AppleScript Editor but under certain conditions it also beeps when run from ...
4
votes
1answer
163 views
How to use Apple Script to control backlit keyboard?
Is there a way to use an Apple Script to control the brightness of the backlit keyboard on a Macbook?
The backlit keys are the F5 and F6.
Edit:
Based on the suggestion of @Clark I tried the follow, ...
4
votes
1answer
227 views
Using AppleScript how do I click a button in a dialog within a window that has no name/title?
I'm trying to write an AppleScript that will empty the cache of Twitter for Mac and then restart the app. The problem I'm running into is that the confirmation dialog doesn't have a name (the title ...
4
votes
2answers
162 views
How to fetch and parse an XML file using AppleScript?
There's an XML file on some remote server (http://foo/bar.xml):
<?xml version="1.0" encoding="UTF-8"?>
<foo>
bar
</foo>
How can I get the value "bar" using AppleScript?
4
votes
1answer
173 views
Best way to attach GDB to process ID and list its ARM registers on the iPhone?
Just wondering, what is the most reliable/best way to attach GDB to process ID and list its ARM registers on the iPhone (through a cocoa app)? I've been trying NSTask for quite awhile, it is able to ...
4
votes
1answer
319 views
Kill screensaver and unlock a mac using appleScript
I'm trying to unlock my mac using my iPhone via bluetooth proximity, the code I'm using:
tell application "System Events"
tell security preferences
set require password to wake to false
end tell
...
4
votes
1answer
206 views
Make Cocoa application respond to simple AppleScript command
I am trying to add a trivial AppleScript support to a Cocoa application. The application performs a check periodically and I just want to be able to tell it to perform it on demand.
I am trying to ...
4
votes
2answers
517 views
AppleScript: on error (try) line number
Is it possible to get the line number, where the script threw an error?
Example:
try
set a to "abc" + "123"
on error line number num
display dialog "Error on line number " & num
end try
...
4
votes
2answers
284 views
Incorrect (but non-error-throwing) return value with a Scripting Bridge call to Finder under 10.6
I've been skimming lots and lots of Scripting Bridge-related threads on StackOverflow and elsewhere, and can't seem to make any headway on figuring out why a block of Cocoa code that makes a Scripting ...
4
votes
4answers
169 views
Get message in compose window from Mail.app
I am trying to make a script that will get the contents of an email message that I'm composing in Mail, do something with the data, and then send the message. I know how to make and send a new message ...
4
votes
1answer
291 views
Way to listen in on all Apple Events?
I'm looking for a way to listen in to all Apple Events send by any program to any other program. There was an app, AEMonitor, that used to do this but it is abandonware as of now.
Is there a known ...
4
votes
2answers
597 views
How can I edit file metadata in OS X?
Does anyone know if it is possible to directly edit file metadata on OS X. Specifically in perl. The parameter I'm specifically trying to change is kMDItemFSLabel (The color of the file). I've had a ...
4
votes
3answers
370 views
Stopping my room getting too hot via AppleScript + a USB Thermometer?
So I'm a coder, I do PHP, JavaScript, and Objective-C. I'm currently working on a website prettymuch full-time and, being 16, don't really have an 'office' except a desk in my bedroom... So I'm ...
4
votes
1answer
635 views
Listening to mac keyboard play/pause events
Some mac apps, like iTunes and Spotify, react to the play/pause/next/previous buttons on some Apple keyboards.
Presumably they're tapping into some sort of NSNotification, how can I do the same?
4
votes
2answers
320 views
Error On Say Function
I'm using the Apple Script Editor that came with Mac System 7.5.5 and trying to run a simple program:
say "Starting to empty the trash."
tell application "Finder"
empty trash
end tell
say "Finished ...
4
votes
9answers
8k views
Sending commands and strings to Terminal.app with Applescript
I want to do something like this:
tell application "Terminal"
activate
do script "ssh user@server.com"
-- // write user's password
-- // write some linux commands to remote server
end tell
...
4
votes
2answers
3k views
AppleScript: Index of substring in string
I want to create a function that returns a substring of a specific string from the beginning of said string up to but not including the start of another specific string. Ideas?
So something like:
...
4
votes
1answer
420 views
Applescript access to last.fm app via application icon in menu bar
I want to create an Applescript to drive the last.fm player app. I'm trying to do this via last.fm application icon in the menu bar rather than using the main application menus, as this approach (I ...