Re: Killall Finder Brings Hidden Apps To Front?
Re: Killall Finder Brings Hidden Apps To Front?
- Subject: Re: Killall Finder Brings Hidden Apps To Front?
- From: Mark Butler <email@hidden>
- Date: Tue, 13 Jan 2009 08:39:52 -0800
Sorry not quite that simple how about...
tell application "Finder" to quit
set theProcess to {}
repeat
try
tell application "System Events" to tell application "Finder" to
activate
end try
delay 0.25
tell application "System Events" to set theProcesses to name of every
process
if theProcesses contains "Finder" then exit repeat
end repeat
Mark
On Jan 13, 2009, at 4:56 AM, Chunk 1978 wrote:
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 <email@hidden>
wrote:
On Tue, Jan 13, 2009 at 1:04 AM, Chunk 1978 <email@hidden>
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 (email@hidden)
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:
This email sent to email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden