Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Return Javascript variable to AppleScript

So, I have a simple problem which may not be possible in AppleScript. I'm attempting to return a variable from a javascript that doesn't have a return in the code. In other words, I'm trying to get the status of an element so that I can run a function conditionally. Here is the code I have that will not get a return:

tell application "Safari"
    activate
    open location "http://127.0.0.1:9999"
    delay 1
    set myVar to do JavaScript "var obj = document.getElementById(87); myVar = obj.value; return myVar;" in document 1
    return myVar
end tell

So, basically I'm trying to get the value of obj and return it to AppleScript, which should be between 0 and 255 (it's a button). The problem is, I don't have any control over the javascript function so I can't add a return obj.value. Is this possible?

like image 410
Cornelius Qualley Avatar asked Apr 22 '14 16:04

Cornelius Qualley


1 Answers

Remove the “return” as well as the “var”. “do JavaScript” will return the last global value. This, for example, should return 7.0:

tell application "Safari"
    activate
    open location "http://www.hoboes.com/Mimsy/"
    delay 1
    set myVar to do JavaScript "numbervalue=3;fred=numbervalue+4" in document 1
    return myVar
end tell

This, however, should return 3.0, as that’s the last global value:

tell application "Safari"
    activate
    open location "http://www.hoboes.com/Mimsy/"
    delay 1
    set myVar to do JavaScript "numbervalue=3; var fred=numbervalue+4" in document 1
    return myVar
end tell
like image 119
Jerry Stratton Avatar answered Oct 06 '22 19:10

Jerry Stratton