Greetings,
I'm a complete newbie to OSX (Tiger). I'm a little confused on the
behaviour of the Cmd-Tab key combination. Cmd-Tab will display
applications minimized to the Dock, but selecting such an application
does not restore it (nothing seems to happen at all.)
Can I restore a minimized application using the Cmd-Tab key
combination? I've found that QuickSilver[1] restores minimized
applications, but I find it takes just a little too much effort.
/Martin
[1] Great application! It alone seems worth the effort to switch!
I'm a complete newbie to OSX (Tiger). I'm a little confused on the
behaviour of the Cmd-Tab key combination. Cmd-Tab will display
applications minimized to the Dock, but selecting such an application
does not restore it (nothing seems to happen at all.)
Cmt-tab just foregrounds a running application. If the chosen
application's window is minimized or closed, then only the menu bar
appears at the top of the screen.
Hint: when using cmd-tab, don't hide windows with the minimize
function. Intead, foreground the app you want with cmd-tab and then
hide all others with opt-cmt-H. Clean and nice.
I don't know what Quicksilver is, but you can do the same thing with the Applescript:
tell application "System Events"
set activeProcesses to every process
repeat with processCounter from 1 to count activeProcesses
set thisProcess to item processCounter of activeProcesses
if visible of thisProcess is true then
set visible of thisProcess to false
else
set visible of thisProcess to true
end if
end repeat
end tell
The Applescript menu is not enabled by default, you have to turn it on.
-- Gnarlie
Entity Martin Lorentzson uttered this profundity:
Greetings,
I'm a complete newbie to OSX (Tiger). I'm a little confused on the behaviour of the Cmd-Tab key combination. Cmd-Tab will display applications minimized to the Dock, but selecting such an application
does not restore it (nothing seems to happen at all.)
Can I restore a minimized application using the Cmd-Tab key
combination? I've found that QuickSilver[1] restores minimized applications, but I find it takes just a little too much effort.
/Martin
[1] Great application! It alone seems worth the effort to switch!
if visible of thisProcess is true then
set visible of thisProcess to false
else
set visible of thisProcess to true
end if
Sysop: | Gate Keeper |
---|---|
Location: | Shelby, NC |
Users: | 790 |
Nodes: | 20 (0 / 20) |
Uptime: | 41:16:01 |
Calls: | 12,115 |
Calls today: | 5 |
Files: | 5,294 |
D/L today: |
72 files (9,959K bytes) |
Messages: | 564,934 |