An Apple event is a type of interprocess message that can specify complex operations and data.
0
votes
0answers
14 views
rapp Apple event doesn't work
I wrote a program for sending a 'rapp' Apple event. From the debug console I can see that target application receives the event and params are looking good. But the program does nothing
...
-2
votes
1answer
52 views
Handling Apple events from console app on Mac [closed]
Please give me some hints about how to work and, more practically, handle Apple events from raw console application written in C++ on Mac. I know that there is huge infrastructure for this purpose in ...
1
vote
1answer
51 views
Creating an AppleEvent descriptor for an alias in OS X 10.8
I have the following code in a project
NSAppleEventDescriptor *JHCreateAliasDescriptorForURL(NSURL *aURL) {
NSAppleEventDescriptor *retObj = nil;
FSRef fsReference;
if ...
0
votes
0answers
46 views
Respond to GURL apple event if application isn't running
I have an application that is responding to 'GURL' (get URL) apple events from a custom registered URL protocol. It is being registered properly and works fine when the application is already running, ...
1
vote
2answers
50 views
Tap AppleEvents being sent to another application
Is it possible to monitor or tap the stream of Apple Events being sent to a process, in the same way you can tap Quartz Events?
I have an application that talks to another application to force it to ...
0
votes
1answer
52 views
Replying to an Apple Event in Cocoa
I'm registering an Apple Event handler using NSAppleEventManager:
[[NSAppleEventManager sharedAppleEventManager]
setEventHandler:self andSelector:@selector(handleGetURLEvent:withReplyEvent:)
...
4
votes
2answers
105 views
Using script to save dynamic network ip address to file?
Is there a way I could use AppleScript to check for my network ip address? Or an alternative coding option? I need to save the ip address to a file if it has changed and then upload it to my ftp ...
2
votes
1answer
158 views
Correct handler in AppleScript to respond to the “open” Unix command for a custom URL handling applet
I'm trying to write a simple AppleScript application that handles sftp:// and sshfs:// URLs on my Mac. Based on a good guide on how to create a custom URL handler app in AppleScript, I wrote a small ...
1
vote
1answer
63 views
Launching application with NSPasteboard data
I would like to launch applications (or send to them using AppleEvents) using NSPasteboard data just like is done in the Finder when you drag and drop a file, text, image on an application (or in the ...
0
votes
1answer
104 views
How do I interprete a record returned as a NSAppleScript result
I run an applescript from an objective-c application using NSAppleScript the executeAndReturnError method. This returns an NSAppleEventDescriptor object containing the result of the script. My script ...
0
votes
1answer
231 views
Cocoa and AppleScript / Apple Events
I'm using Cocoa’s [[NSWorkspace sharedWorkspace] launchApplicationAtURL… with the NSWorkspaceLaunchNewInstance option to spawn new instances of an AppleScriptable application (Adobe Acrobat), and I ...
2
votes
1answer
131 views
get url event on app open in objective c (Mac OSX)
I'm writing a very lightweight app for OSX 10.6+ which will respond to a user clicking on a URL, pass that URL to another application via TCP and then exit.
So far it has registered fine to launch ...
0
votes
1answer
179 views
How to force kill another application in cocoa Mac OS X 10.5
I've this task, from my application i need to kill another my application, the problem is that the other application has a Termination Confirm Dialog (there is no critical data to save, only ...
2
votes
2answers
650 views
Set position of window with AppleScript
I'm trying to set the position of the Messages.app chat window using AppleScript.
tell application "System Events"
set position of window 1 of application "Messages" to {100, 100}
end tell
With ...
4
votes
0answers
158 views
Very slow to open a file with application:openFile: after returning
My application implements the NSApplicationDelegate method -application:openFile: in its app delegate. There seems to be a problem new to OS 10.8 where after receiving the apple event to open a file, ...
2
votes
2answers
1k views
Finder update/refresh applescript not working in 10.8
I have been using apple script for updating display for files and folders in finder. This is simplified version of that script:
tell application "Finder"
tell window 1 to update items
end tell
...
0
votes
1answer
56 views
Replace AEAddressDesc in apple event
I have an apple event, and I need to resend this event to the other process. Can anyone tell me how?
static void GetEvent(AppleEvent *event)
{
RgnHandle cursorRgn = NULL;
Boolean ...
0
votes
2answers
557 views
How to relaunch finder application
I am using following applescript to relaunch finder application.
osascript -e "tell application \"Finder\"" -e "delay 1" -e "try" -e "quit" -e "delay 1" -e "activate" -e "end try" -e "end tell"
...
0
votes
1answer
137 views
SDL based app doesn't show window upon launch
I'm using mac os x 10.7.2 and have successfully packaged up a pygame application using py2app. Pygame uses SDL, I use SDL 1.2.15 (most recent as of writing) When I first launch the app, its icon ...
1
vote
2answers
360 views
Getting an AppleScript property of an NSAppleEventDescriptor
I'm trying to use some Apple Events in my Cocoa project to get access to the Terminal application. I did not want to use embedded AppleScripts or any compiled scripts, so I started looking into the ...
1
vote
1answer
94 views
What is the “creator code” for Final Cut Pro X?
I'm working on sending Apple Events to Final Cut Pro X. At the moment I have the trial (free is always nice for experimenting). However, looking at the .plist in the package, the creator code is ...
2
votes
0answers
160 views
Sending AppleEvents to Finder via Python
I'm trying to send a kAESync AppleEvent to Python, but I can't seem to figure out how to do this. The documentation on the Carbon module seems sparse. There is a way to do this in Carbon, but I am not ...
1
vote
2answers
567 views
How can I execute a simple Applescript from a C++ program?
I would like to execute the Applescript command tell application "Finder" to open POSIX file */path/to/somefilename* from a C++ program. It looks like I might want to use OSACompileExecute, but I ...
0
votes
2answers
343 views
How to refresh browser view in finder window(mac os 10.5)?
I want to refresh all NSTableView in NSBrowserView of finder on mac os 10.5. For refreshing icon view , list view and flow list view, i am using apple script.
@"tell application \"Finder\" to ...
1
vote
2answers
256 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 ...
0
votes
0answers
271 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,
...
1
vote
1answer
261 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 ...
7
votes
2answers
242 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 ...
0
votes
1answer
180 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
254 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.
...
1
vote
1answer
552 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 ...
0
votes
1answer
170 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 ...
1
vote
3answers
873 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
2answers
645 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
298 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 ...
5
votes
1answer
470 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 ...
0
votes
1answer
138 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
306 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
107 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?
0
votes
1answer
131 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 ...
2
votes
1answer
459 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 ...
1
vote
2answers
1k 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 ...
3
votes
2answers
1k 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 ...
0
votes
1answer
342 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 ...
1
vote
1answer
3k 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
1k 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 ...
3
votes
2answers
1k 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
4answers
1k 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 ...


