AppleScriptObjC is a framework that allows Cocoa applications to be written in AppleScript. It obsoletes AppleScript Studio as of Mac OS X 10.6.
Questions tagged [applescript-objc]
274 questions
-1
votes
1 answer
cocoa-applescript - background process shell command
I have built a program which involves pinging specified IP addresses to tell whether they are active or not.
repeat for IPaddress in allIPaddresses
try
do shell script "ping -o -t 1 -c 1 " & IPaddress
set goodIPs to (goodIPs & IPaddress) --…

DJpotato
- 17
- 7
-1
votes
1 answer
Can you make games, animations, etc in ApplescriptObjC?
I tackled ApplescriptObjC. I started making apps with the interface builder and such. But can you make actual games in ApplescriptObjC like you can in normal Objective-C? What is the difference other than the syntax?

James
- 213
- 1
- 3
- 13
-2
votes
1 answer
applicationwillfinishaunching handler not working applescript xcode
My on applicationWillFinishLaunching_(aNotification) handler isn't working. It works with my "xib" IB, but it doesn't work with my ".storyboard" IB. Where in the IB should I look? I have searched quite a bit looking for anything that says…
user7492670
-5
votes
1 answer
iTunes AppObjC Swift Mirror State
I’ve got an AppleScript to Swift bridge, with my applescripts being called through the Swift AppDelegate. The project is a controller for iTunes. Buttons (eg play/pause, fast forward, rewind) work but I’m not sure how to get the play/pause button to…

Jack Vanderpump
- 216
- 2
- 16