Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
119 views

Does Ruby offer a mechanism for responding to Apple Events on OS X?

I'm working on a desktop application for OS X using Ruby-Tk, and I would like to provide an Apple Events interface for the application. This means that the application would define a dictionary of ...
4
votes
1answer
291 views

Way to listen in on all Apple Events?

I'm looking for a way to listen in to all Apple Events send by any program to any other program. There was an app, AEMonitor, that used to do this but it is abandonware as of now. Is there a known ...
2
votes
1answer
776 views

How do I get the window id and tab number of a Terminal window using AppleScript via the ScriptingBridge?

I can open a Terminal tab using the following AppleScript: tell application "Terminal" set myTab to do script "exec sleep 1" get myTab end tell This returns a string like: tab 1 of window ...
2
votes
2answers
640 views

How to Extract AppleScript Data from a NSAppleEventDescriptor in Cocoa and Parse it

What I'm doing is executing an AppleScript inside of Cocoa. It returns some data as a NSAppleEventDescriptor, which NSLog() prints like so: <NSAppleEventDescriptor: 'obj '{ 'form':'name', ...
1
vote
2answers
91 views

Contextual Menu Plugins for Leopard OS

I am writing Contextual Menu Plugins for Leopard OS and referring Writing Contextual Menu Plugins for OS X, part 1 article by Brent Simmons. My plugin is working fine. Is there any way to move my ...
1
vote
0answers
45 views

Subscribing to Apple events in Qt

Following the the code linked from here: Trap click event on dock icon using Qt on Mac, I tried to call the following method directly in my QApplication's constructor to receive notification of dock ...
1
vote
1answer
207 views

Applescript: Safari Can't Save Web Page (AppleEvent Handler Fails Error)

I want safari to download and save a web page using apple automator. With a Safari window open, I run the following script in AppleScript Editor: tell application "Safari" set URL of document 1 ...
1
vote
1answer
359 views

GCD and AppleEvents / NSOperationQueue and AppleScript

As i understood, the threads provided by GCD do have a runloop but no source/port. Now i use some of methods that call AppleScripts thru AppleEvents inside an NSOperationQueue. And sometimes my app ...
0
votes
0answers
34 views

AEInstallEventHandler handler not being called on startup

I've installed a Apple Event handler for URL's in my app: OSStatus e = AEInstallEventHandler( kInternetEventClass, kAEGetURL, ...
0
votes
1answer
56 views

AppleEvent: how to debug `eventDidFail`?

I am getting this error from SIMBL in the console: 05.09.11 17:00:09,165 SIMBL Agent: eventDidFail:'tvea' error:Error Domain=NSOSStatusErrorDomain Code=-1708 "The operation couldn’t be completed. ...
0
votes
0answers
106 views

AppleEvent handler from OSAX causes other AppleEvents to fail

The code from appscript import * ps = app("Adobe Photoshop CS5") ps.do_javascript works if Photoshop is not running yet. In that case, it starts up Photoshop and it finds the do_javascript method. ...
0
votes
1answer
79 views

Send multiple parameters with apple event

I am trying to send an apple event to an application we have developed. I want to be able to call the apple event, and at the same time pass parameters with the event. eg acctid, acctpassword, order ...
0
votes
2answers
154 views

AppleScript from Java on Mac OS X 10.6?

To call AppleScript from Python, I use the "appscript" bridge: http://appscript.sourceforge.net/ What can I use to call AppleScript from Java on Mac OS X 10.6+?
0
votes
0answers
99 views

Handle Dock icon drops in background

I currently have dragging and dropping URLs onto my Mac app's Dock icon working. When I drag and drop a URL onto the Dock icon, my app delegate's - ...
0
votes
2answers
191 views

AppleScript reference objects - help me understand them

Why do these even exist? It seems absurd. Like with most dynamic languages, AppleScript types seem to be either immutable primitive types like integers and reals which are going to be handed around by ...
0
votes
1answer
104 views

How to send a string from an Apple script

I code in REALbasic. Whenever I receive an IM via iChat, iChat runs an applescript and sends to it the last message received. I need to somehow forward this message as a string to the app I'm ...
0
votes
1answer
96 views

Where is the leak?

I have a memory leak in this code. I am busting it since 2 weeks and I am starting to be mad. Thanks in advance for your help :) +(void) makeEvent:(int) event:(AppleEvent *)theEvent { int sig = ...
0
votes
1answer
197 views

SBApplication : how to send raw data

I woudl like to send raw data (a void*) using SBApplication sendEvent Unfortunaltly I've found no documentation about this. Do you have any idea to achieve this? Thanks in advance for yoru help, ...
0
votes
2answers
62 views

appleevent versus notification

I am looking for a high performance inter process communication system in macos X. What is the best system? AppleEvents or NSNotifications? Thanks :)
0
votes
1answer
101 views

Help with ODBEditorSuite Apple Event voodoo please?

I'm working on a simple little text editor that implements the editor portion of the ODBEditorSuite of Apple Events so that my app can work with QuickCursor for providing editing capabilities. The ...
0
votes
2answers
963 views

iTunes Apple Events API

I'd like to control iTunes through Objective-C ( I just can't get Python appscript installed correctly on my OS/X 10.6.3 system ... that would have been my first choice ). From what I gather, the IPC ...
0
votes
1answer
221 views

Is there a Cocoa equivalent of Apple Event Manager?

Is there a way to handle Apple Events (namely starting the app from a custom protocol link like myapp://do/something/cool) without using the Carbon APIs? If not, is it safe to assume that these APIs ...
0
votes
1answer
1k views

Application exit event

I am developing an application in cocoa .My application shows a pop up sheet initially .Now i need to know which event is fired when we try to exit the application by right clicking and selecting ...
0
votes
2answers
943 views

How to send a “Cmd-C” keystroke to the active application in objective-c, or tell the application to do a copy operation?

Getting the active application is not a problem, I already have this implemented. What I want to know is how to send a "Cmd-C" key combination to the active application so it puts the selected text ...
0
votes
4answers
988 views

How can I troubleshoot my custom URL scheme?

I set up a simple event handler as mentioned here, but it appears that the selector isn't called. I put the code in my AppDelegate class and wired up the delegate in IB. Tried putting in some NSLog()s ...