On Feb 5, 2009, at 2:31 AM, Yang Meyer wrote:
Thanks for pointing out the potential cause. I read up on Obj-C
trampoline methods/objects (pretty cool, actually!) and understand
the basic idea, but honestly I'm not seeing the connection to my
problem. Why and how would such a trampoline obje
Ken,
I want to open another application (say, Safari) in the "layer"
just behind my application.
"Solution" 2:
[ws launchApplication:@"Safari"]; // opens Safari in front
[NSApp activateIgnoringOtherApps:YES]; // pushes my app in front,
effectively right above Safari
Problem with
On Feb 4, 2009, at 10:08 AM, Sean McBride wrote:
On 2/4/09 3:02 PM, Yang Meyer said:
I want to open another application (say, Safari) in the "layer" just
behind my application.
Have you looked at using Launch Servires? See LSLaunchURLSpec() and
LSLaunchFlags.
I don't think that's going to
On 2/4/09 3:02 PM, Yang Meyer said:
>I want to open another application (say, Safari) in the "layer" just
>behind my application.
Have you looked at using Launch Servires? See LSLaunchURLSpec() and
LSLaunchFlags.
--
Sean McBride, B. E
On Feb 4, 2009, at 8:02 AM, Yang Meyer wrote:
I want to open another application (say, Safari) in the "layer" just
behind my application.
"Solution" 2:
[ws launchApplication:@"Safari"]; // opens Safari in front
[NSApp activateIgnoringOtherApps:YES]; // pushes my app in front,
effec
Hi,
I want to open another application (say, Safari) in the "layer" just
behind my application.
I've researched quite a bit now, but the two "solutions" I have found
so far do not do exactly what I want.
"Solution" 1:
NSWorkspace * ws = [NSWorkspace sharedWorkspace];
[ws l