NSAppleEventManager question...
NSAppleEventManager question...
- Subject: NSAppleEventManager question...
- From: Jeffrey J Barbose <email@hidden>
- Date: Wed, 1 Aug 2001 11:34:02 -0700
Actually, this is more of an AppleEvents question, but here goes.
Using the following NSAppleEventManager class method, i am properly
dispatching AEs in my Cocoa app:
[[NSAppleEventManager sharedAppleEventManager] setEventHandler:self
andSelector:@selector(testHandleAE:withReply:)
forEventClass:(AEEventClass) 'Foo_'
andEventID:(AEEventID) 'Bar_' ];
My question is, can i set up a single selector for an entire class of
AEs? In other words, is there some wildcard value for the
andEventID: argument ?
i've tried '****' and even '????' and ' ', to no avail.
No biggie here, but it would be handy...
Oh, and thanks to all those who helped with past AE-related topics on
this list!
Jeff