Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
442 views

What is a good VM for developing a hobby language?

I'm thinking about writing my own little language. I found a few options, but feel free to suggest more. JVM Parrot OSA A lot of languages are using the JVM, but unless you write a Java-ish ...
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
258 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
0answers
32 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
0answers
95 views

Passing an NSArray populated with NSDictionaries to a NSAppleScript

So I have an Apple Script that is running one of the functions of my program like so: [ NSThread detachNewThreadSelector:@selector(runAppleScriptTask) toTarget:self ...
1
vote
1answer
528 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 ...
1
vote
1answer
514 views

How can I get rid of this osascript output?

The following question relates to an answer that was posted on this question: I like the notion of creating my own function that opens a new terminal, so the script that Craig Walker linked to in ...
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
64 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
0answers
92 views

osascript “display dialog” sometimes works and sometimes errors with “No user interaction allowed”

I have a small shell script running on my OSX 10.7 (Lion) macbook pro that uses osascript to gather input from the user. This script sometimes works perfectly, and sometimes returns execution error: ...
0
votes
1answer
218 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
0answers
92 views

Dock icons controlled by osascript

I wanted to ask if there's a way to make the application's Dock icon in Mac OS X "jump"(for example in case of a notification) by using "osascript". Thank you in advance.
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
349 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
1answer
168 views

How do I simulate a mouse click through the mac terminal?

Is there any way to do this without any programs or scripts? (Maybe through osascript?)
0
votes
2answers
436 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
309 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 ...