1
vote
1answer
13 views
Can AppleScript take output of shell script and put in paste buffer?
Can AppleScript take the output of a shell script or variable and put it in the paste buffer?
I have a file with a password for every day (formatted "date,password") and I want to …
0
votes
0answers
42 views
Hello World Error
Hello,
I'm learning AppleScript and my first program is a Hello World(of course!):
display dialog "Hello World"
But when I try to run this I got the error:
The result of a …
0
votes
3answers
27 views
User properties/ privileges in AppleScript
I want to write an applescript program that first checks to see if the user has Admin privileges, and if it doesn't then requesting a re-log-in or something.
Eventually the script …
0
votes
2answers
61 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?
…
0
votes
1answer
20 views
Applescript to archive email in Mail.app
I need to write an Applescript for Mail.app that will take all messages in my Inbox and Sent Messages that are older than a certain # of days and move them into respective folders …
0
votes
1answer
32 views
Is there a way to hook in to OSX sleep/wake events via Applescript?
The problem I am trying to solve is quite simple.
When I open the lid of my MacBook I like to have the Dock on the left side of the screen, but when I get home and connect my MacB …
0
votes
1answer
191 views
Applescript to open .url files on OS X Firefox
For reasons that only the developers can understand, Firefox will create and open .url files on Windows and .webloc files on OS X but won't allow the Windows version of Firefox to …
0
votes
2answers
22 views
How to parse Skype response with AppleScript?
Essentially, I need to parse the response string of the CHAT CREATE command with AppleScript to get the chatid. The response looks like:
CHAT #my.username/$123abc456blah STATUS …
0
votes
1answer
11 views
Restrict file types on droplet.
This question isn't limited to people who know AppleScript, if you do Cocoa, etc., you should know the answer to this:
I'm making a droplet in AppleScript that compresses JavaS …
2
votes
1answer
40 views
Setting the mosue tracking speed via applescript
I'm trying to get an apple script to set the mouse tracking speed in OS X 10.6, specifically with a new Magic Mouse.
I've found the following:
set trackingValue to 5
--Open and …
0
votes
1answer
34 views
applescript + shell script problem
I'm writing a script to keep track of missing frames in a render (thousands of image files). to find the numbered frames in the sequence I do this:
set thecontents to every paragr …
0
votes
0answers
13 views
Why does an applescript receive an event multiple times from iChat?
While writing an auto-relogin tool for iChat, I came across an interesting issue. Given the following script:
using terms from application "iChat"
on logout finished for this_ …
0
votes
1answer
40 views
Applescript to launch iTunes with a specific library
I would like to write an AppleScript that would allow me to launch iTunes with a given Library instead of having to hold down the Option key and browsing for one. I'm already awar …
0
votes
1answer
34 views
In applescript, how can I access the keyboard shortcut of a menu item?
I'm trying to figure out the keyboard shortcut (e.g., shift+cmd+S) of a given menu item in Applescript. The "Probe Menu Bar" script has helped me to access the menu items and even …
0
votes
2answers
147 views
Get the current working directory of process with a pid programmatically on OS X
Is there a way to get the current working directory of a process using it's PID programmatically on OS X?
Cocoa, Carbon, or AppleScript are all acceptable.
It is not acceptable t …
