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.
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.