i have this code to relaunch the finder:

- (void)killAllFinder
        {
        NSTask *killAllFinderTask;
        killAllFinderTask = [[NSTask alloc] init];
        [killAllFinderTask setLaunchPath:@"/usr/bin/killall"];
        [killAllFinderTask setArguments: [NSArray arrayWithObject:@"Finder"]];
        [killAllFinderTask launch];
        [killAllFinderTask release];
}

it *use* to work as expected, the finder and desktop icons would
relaunch - disappearing for a second and then returning.  but as of
today, i've noticed that apps currently open and hidden will unhide
and be brought to the front when this method it activated... WHAT is
that about?

if there's any clue, i had my screen replaced today and the technician
did some sort of keyboard relaunch command (zapped PRAM?)... could
that be what is causing this?
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to