Tagged Questions
0
votes
2answers
79 views
Can AppleScript/osascript be used to click menu extra menu items?
I have an application installed that only appears in the menu bar (as a menu extra to the right). I would like to click one of the items contained in its menu via osascript. I've found the following ...
1
vote
0answers
23 views
LaunchAgent plist to keep an app running and hiden
I'm using the following script
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist ...
0
votes
1answer
120 views
AppleScript: Open a new window in current space without switching to active window in another space
I want to have an application open a new window in the current space without switching to a space in which a window is already open, but I want to keep the
When switching to an application, ...
1
vote
0answers
608 views
Pass arguments to osascript via shell function in OS X Mountain Lion
The answer in How to open a new Firefox window with URL argument is broken in Mac OSX Mountain Lion (10.8.2). I can't comment on that answer or question, so I had to create a new question.
It fails ...
2
votes
0answers
278 views
Applescript to connect to bluetooth device
I'm trying to create an applescript to allow me to connect to a bluetooth device by it's Bluetooth ID.
So far, i've managed to get an applescript to turn on bluetooth if it's off. Here's the code:
...
3
votes
1answer
787 views
Applescript create event in calendar, how do I remove the default alert?
Running 10.8 Mountain Lion, I'm trying to create a new event with Applescript like this:
set theDate to (current date)
tell application "Calendar"
tell calendar "Calendar"
set timeString ...