|
|
#1 |
|
MVP
Join Date: Oct 2004
Location: Songkhla, Thailand
Posts: 1,526
|
Finder window to max shortcut?
Is there a KB shortcut to max out all Finder windows to a Dock-aware full screen size?
TIA
__________________
LoadsaMacs. |
|
|
|
|
|
#2 |
|
Hall of Famer
Join Date: Jan 2002
Location: twitter.com/mikeysan
Posts: 3,476
|
No. Mac OS X windows are designed to maximize to the amount of screen space needed to display as much of its contents as possible.
__________________
COMPUTER TYPE SOME SPECIFICATIONS I COPIED FROM THE BOX STUFF I INSTALLED ALL BY MYSELF "WITTY QUOTE" |
|
|
|
|
|
#3 |
|
MVP
Join Date: Oct 2004
Location: Songkhla, Thailand
Posts: 1,526
|
Thanks Mikey. Is it do-able, maybe with a script? I do not find that my Finder windows max out in the way you describe. Actually, not even slightly.
__________________
LoadsaMacs. |
|
|
|
|
|
#4 |
|
MVP
Join Date: Feb 2006
Location: Bangkok
Posts: 1,281
|
Well, you could set a keyboard shortcut for the "zoom" command (green plus button). That resizes my Finder window to full screen, and leaves room for the dock. Windows will only go full screen for me if they are displaying enough content. Three or four levels deep into column view is enough to do it.
Pressing option while clicking the green plus button causes all open Finder windows to zoom.
__________________
Last edited by ThreeBKK; 12-10-2007 at 01:09 PM. |
|
|
|
|
|
#5 |
|
All Star
Join Date: May 2004
Posts: 993
|
You could write an AppleScript or Automator action to get the screen size and set the target window to some size just under that. Then bind that script to a key combination via Quicksilver or similar.
|
|
|
|
|
|
#6 | |||||||||||||||||||||||
|
MVP
Join Date: Oct 2004
Location: Songkhla, Thailand
Posts: 1,526
|
I could if I knew how...
__________________
LoadsaMacs. |
|||||||||||||||||||||||
|
|
|
|
|
#7 | |||||||||||||||||||||||
|
Major Leaguer
Join Date: Dec 2005
Location: Plymouth, Massachusetts
Posts: 414
|
Every Finder window? Something like this? Code:
tell application "Finder"
set {d1, d2, d3, d4} to (desktop's window's bounds)
set margins to {d1 + 10, d2 + 54, d3 - 10, d4 - 148}
set bounds of every window to margins
--replace the previous line with the following for just the front window:
--set bounds of window 1 to margins
end tell
Last edited by capitalj; 12-12-2007 at 08:02 AM. |
|||||||||||||||||||||||
|
|
|
|
|
#8 |
|
MVP
Join Date: Oct 2004
Location: Songkhla, Thailand
Posts: 1,526
|
Thanks Capitalj. Where do I get the info that goes in the brackets. Apologies for being thick again...
__________________
LoadsaMacs. |
|
|
|
|
|
#9 | |||||||||||||||||||||||
|
Major Leaguer
Join Date: Dec 2005
Location: Plymouth, Massachusetts
Posts: 414
|
This line of the script: Code:
set {d1, d2, d3, d4} to (desktop's window's bounds)
This line: Code:
set margins to {d1 + 10, d2 + 54, d3 - 10, d4 - 148}
d1 + 10 - (0 +10) leaves a 10 pixel margin on the left side d2 + 54 - (0 + 54) leaves a 10 pixel margin on the top d3 - 10 - (1680 - 10) leaves a 10 pixel margin on the left side d4 - 148 - (1050 - 148) leaves a 150 pixel margin on the bottom I only checked the dimensions of a maximized dock by eye, but 148 pixels leaves what I think is a 10 pixel space between the top of the dock and the bottom of the Finder window. So to change the size of the margins, change the numbers 10, 56, 10, 148. For example: Code:
set margins to {d1, d2 + 44, d3, d4 - 138}
|
|||||||||||||||||||||||
|
|
|
|
|
#10 |
|
Major Leaguer
Join Date: Dec 2005
Location: Plymouth, Massachusetts
Posts: 414
|
It just occurred to me - save the script as an application and put it your Finder window toolbar for easy access.
|
|
|
|
|
|
#11 |
|
All Star
Join Date: Sep 2006
Posts: 854
|
Threebkk's tip #4 seems much more simple - no?
|
|
|
|
|
|
#12 |
|
Major Leaguer
Join Date: Jul 2005
Posts: 336
|
Anyone have any idea about how to make the aforementioned script work properly in a dual monitor setup? My primary monitor has a resolution of 1920x1200 and my secondary monitor is 2560x1600...
Thanks! |
|
|
|
|
|
#13 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Major Leaguer
Join Date: Dec 2005
Location: Plymouth, Massachusetts
Posts: 414
|
Not really. There is no difference in the amount of time it takes to type a keyboard shortcut for either approach, and it won't take any longer to manually click the application icon in the tool bar than to click the green zoom button, but the button will not do exactly what the OP wants (emphasis is mine):
As Mikey-San said in post #2
It doesn't open every window to fill the screen every time. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|
|
#14 | |||||||||||||||||||||||
|
Major Leaguer
Join Date: Dec 2005
Location: Plymouth, Massachusetts
Posts: 414
|
I don't have dual monitor, maybe these will help? I saw them, but didn't read them through. Exploring Dual Screens Get monitor resolution |
|||||||||||||||||||||||
|
|
|
|
|
#15 |
|
Prospect
Join Date: Mar 2009
Posts: 1
|
Hi all.
I know this conversation is over a year out, but it's still an issue in Leopard for those of us who want full-screen maxin'. I've been doing this happily with my mac since Panther. It takes some minor work on your part to set it up, but if you're pulling your hair out and need a fix, go to this old post I wrote about it here . (It's a long thread, but do a text search for: "HERE IS A MAC OSX SCREEN EXPAND FIX") ![]() 'Best, - J.E.Highley www.rationalbabble.com |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|