i found this on apple's website, but i'm not sure if this is what you
are talking about when you say using an apple event to quit the
finder.  also, based on the description of the code, it doesn't seem
like this will automatically relaunch finder after it has been quit.

OSErr QuitFinder()
{
    int kFinderProcessSignature = 'MACS';
    OSErr            anErr = paramErr;
    AppleEvent        tAppleEvent = {typeNull,nil};
    AppleEvent      tReply;
    AEBuildError    tAEBuildError;

    anErr = AEBuildAppleEvent(
                kCoreEventClass, kAEQuitApplication,
                typeApplSignature, &kFinderProcessSignature,
                sizeof(OSType), kAutoGenerateReturnID,
                kAnyTransactionID, &tAppleEvent,
                &tAEBuildError,"");

    if (noErr == anErr)
    {
        anErr = AESend( &tAppleEvent, &tReply, kAENoReply |
                          kAENeverInteract, kAENormalPriority,
                          kNoTimeOut, nil, nil );

        (void) AEDisposeDesc(&tAppleEvent);
    }
    return anErr;
}


On Tue, Jan 13, 2009 at 1:16 AM, Kyle Sluder <kyle.slu...@gmail.com> wrote:
> On Tue, Jan 13, 2009 at 1:04 AM, Chunk 1978 <chunk1...@gmail.com> wrote:
>> i have this code to relaunch the finder:
>
> Can't answer your question directly, but you should be sending Finder
> a Quit Apple Event, not killing it.  And even if you want to kill it,
> you should not be launching a task to do so.  And if you are going to
> launch a task to do it, you shouldn't be using "killall Finder" to do
> it.
>
> --Kyle Sluder
>
_______________________________________________

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