Tagged Questions
2
votes
1answer
476 views
AppleScript Runner exit status passed back to shell script
I need to be able to run AppleScript in a shell script. I am using "AppleScript Runner" in order to be in interactive mode, so that dialogs etc. are supported. I've got it working, but I need to get ...
2
votes
2answers
261 views
Debugging osascript execution from within a ruby daemon
I have a need to frequently run an applescript on my web server. As the server is running rails, and I need access to my models before and after running the script, I thought that a daemon (via the ...
2
votes
2answers
3k views
Can't do shell script with a repeat with i from 1 to n loop
This works (prints, for example, “3 arguments”):
to run argv
do shell script "echo " & (count argv) & " arguments"
end run
This doesn't (prints only “Argument 3: three”, and not the ...
1
vote
1answer
38 views
Getting iTunes lyrics usings osascript
I'm trying to get the lyrics to the current playing song in iTunes using osascript. The command I'm using is:
osascript -e '''tell application "iTunes" to lyrics of the current track'''
The problem ...
1
vote
1answer
536 views
osascript / syntax error: Expected end of line but found command name. (-2741)
I'm running into problems with a shell script that utilizes a small portion of Applescript. When I compile it with Applescript editor it works. It does not though within a shell script.
44:49: ...
1
vote
1answer
126 views
The equivalent of min(x,y) in OsaScript
I've got a working OsaScript which has a repeat looking like this:
repeat with i from 1 to count windows of proc
....
end repeat
now I want to change this to min(2,count windows of proc)
How ...
0
votes
0answers
21 views
How to use applescript to inspect a class
How to use applescript to reflect on an osascript class, i.e. to show all its methods?
I dont mean through Window/Library.
Oops! Your question couldn't be submitted because:
It does not meet our ...
0
votes
0answers
66 views
How can I read the Keychain with the `security` command from Ruby?
I'm trying to write and read from Keychain Access using security command on macOS terminal. I'm using ruby as scripting language.
I get input using "osascript". and write and read using "security" ...
0
votes
1answer
220 views
exec osascript(AppleScript) from within NodeJS
I know I am probably missing this hugely,
but anyone knows why this keeps returning an error?
$ node -v && node
v0.4.6
> var cmd = 'osascript -e "open location \"http://google.com\""';
...
0
votes
1answer
151 views
Select a particular tab in terminal depending upon the content using applescript and best practices
This is an application specific problem. I am trying to find and select a tab in Terminal.app depending on contents within. Here is what I'm doing:
tell application "Terminal"
set foundTabs to ...
0
votes
1answer
352 views
Cancel button on osascript in a bash script
i have a small Problem with a osascrip line in a bash script.
The bash script gets called via a Applescript 'choose from list' dialogue, and then you can define options via a if [[ $* = *"Option 1... ...
0
votes
2answers
438 views
How do you get the playtime of an iTunes track with applescript?
I'm just starting to play around with Geektool and applescripting to make my mac desktop fun and I've run into a question I can't seem to find an answer to. How do you get the current song playtime ...
-1
votes
2answers
311 views
Multiline strings in osascript
I want to do this in bash:
read -r -d '' script <<'EOF'
echo 1
echo 2
echo 3
EOF
osascript -e "do shell script \"$script\" with administrator privileges"
# Output: 3
# Expected: 1
# 2
# 3
...