From: Tempuser on
On 3/20/10 9:35 AM, Richard Blaine wrote:
> Any quick way/shortcut to close five or six currently running apps under
> 10.6.2 without having to manually shut down each one?
There is no set of keyboard commands I am aware short of also
logging off or shutting down after the command is issued.

Here are two freeware apps that will do it:
http://www.apple.com/downloads/macosx/automator/closeallopenapplications.html

http://www.mp3-converter.biz/force-quit-all-applications-mac.html
From: Doc O'Leary on
In article <ho2q0j$lbt$1(a)news.albasani.net>,
Richard Blaine <rick(a)nospam.biz> wrote:

> Any quick way/shortcut to close five or six currently running apps under
> 10.6.2 without having to manually shut down each one?

How do you want to pick which apps get the ax? If it differs each time,
it's probably just as easy to quit them from the Dock popup menu. If
it's a pre-determined list, script it. If it happens to be *all* the
running apps, it's probably just easiest to log out.

--
My personal UDP list: 127.0.0.1, localhost, googlegroups.com, ono.com,
and probably your server, too.
From: OP on

"Tempuser" <tempuser(a)vacationmail.com> wrote in message
news:ho2sec$uv4$1(a)speranza.aioe.org...
> On 3/20/10 9:35 AM, Richard Blaine wrote:
>> Any quick way/shortcut to close five or six currently running apps under
>> 10.6.2 without having to manually shut down each one?
> There is no set of keyboard commands I am aware short of also logging off
> or shutting down after the command is issued.
>

So the answer is still, "No".

> Here are two freeware apps that will do it:
> http://www.apple.com/downloads/macosx/automator/closeallopenapplications.html
>
> http://www.mp3-converter.biz/force-quit-all-applications-mac.html


From: Jolly Roger on
In article <Wk6pn.16365$3D3.742(a)newsfe19.iad>,
"OP" <Otto.Philips(a)yahoo.com> wrote:

> "Jolly Roger" <jollyroger(a)pobox.com> wrote in message
> news:jollyroger-99A990.10533820032010(a)news.individual.net...
> > In article <ho2q0j$lbt$1(a)news.albasani.net>,
> > Richard Blaine <rick(a)nospam.biz> wrote:
> >
> >> Any quick way/shortcut to close five or six currently running apps under
> >> 10.6.2 without having to manually shut down each one?
> >
> > You could write a simple Applescript to do it.
>
> Maybe he's not a programmer. So your answer should have been, "No".

You don't need to be a programmer to write a little script.

--
Send responses to the relevant news group rather than email to me.
E-mail sent to this address may be devoured by my very hungry SPAM
filter. Due to Google's refusal to prevent spammers from posting
messages through their servers, I often ignore posts from Google
Groups. Use a real news client if you want me to see your posts.

JR
From: Jolly Roger on
In article <michelle-9CD0D7.10093620032010(a)nothing.attdns.com>,
Michelle Steiner <michelle(a)michelle.org> wrote:

> In article <Wk6pn.16365$3D3.742(a)newsfe19.iad>,
> "OP" <Otto.Philips(a)yahoo.com> wrote:
>
> > >> Any quick way/shortcut to close five or six currently running apps under
> > >> 10.6.2 without having to manually shut down each one?
> > >
> > > You could write a simple Applescript to do it.
> >
> > Maybe he's not a programmer. So your answer should have been, "No".
>
> This might do it:
>
> tell application "System Events"
> close (application processes whose background only is false)
> end tell

Right.

Or, if you want to be really fancy, and choose specifically which
applications you want to quit:

-- begin script
tell application "System Events"
set appList to the name of every application process whose
background only is false
end tell

choose from list appList with title "Quit Applications" with prompt
"Quit these applications:" OK button name "Quit Selected" with multiple
selections allowed

repeat with nextApp in the result
tell application nextApp to quit
end repeat
-- end script

--
Send responses to the relevant news group rather than email to me.
E-mail sent to this address may be devoured by my very hungry SPAM
filter. Due to Google's refusal to prevent spammers from posting
messages through their servers, I often ignore posts from Google
Groups. Use a real news client if you want me to see your posts.

JR