ASObjC Runner os 10.8.3

Hi,

Does anyone know if ASObjC Runner works in mountain lion. I can’t get things to work. Ex.


delay 3
tell application "ASObjC Runner"
click button
end tell

→ error “The variable mouselocation is not defined.” number -2753 from “mouselocation”

‘button’ in the script is highlighted.

Thanks,

Model: MBP
AppleScript: 2.2.3
Browser: Safari 536.26.17
Operating System: Mac OS X (10.8)

Hi,

That’s ok. I had to switch it to open in 32 bit mode and it works. Now wondering if it can run in 64 bit mode.

Thanks anyway.

Have a good day.

kel

It runs fine in 64-bit mode. Your problem is that click button isn’t a Runner command.

Hi Shane,

At first I was trying to get properties of the application (e.g. ‘modifier keys’) also, in 64 bit mode, and it wouldn’t work. Maybe I had to wait or restart, but now it’s working in 64 bit mode.

Thanks for the great app. I didn’t know it had so much stuff.

kel.

Is it possible you had another copy on your disk? Whatever, future versions will be 64-bit only.

Before I downloaded it, I searched the computer and the dictionary list. The script I started with was this:


tell application "ASObjC Runner"
	modifier keys
end tell

When I compiled it the ‘keys’ was selected with an error I’ve forgotten. This was the only thing I tried that worked:


tell application "ASObjC Runner"
	name
end tell

→ “ASObjC Runner”

Then I tried some other things along with this:


delay 3
tell application "ASObjC Runner"
	click button -- I know now it needs 'once/Œtwice/Œright button'
end tell

Now this compiles, but it didn’t then with error ond ‘button’ selected. Then I changed the app to 32-bit and it started working, restarted the computer. I later changed it back to 64-bit after reading your post.

Hope this helps if you hear about it again.

Thanks again,

kel.