Search
-
-
Recent Posts
Tags
amazon analytics api apple aws blog browser chrome chromium cloud Design dropbox ec2 email error facebook firefox gmail google google-apps greasemonkey ipad javascript jQuery linux lion mac microsoft mysql os x osx php plugin quicksilver scam social spam ssl twitter unix video windows woo wordpress yahoo
Tag Archives: minimize
Mac OS X: Minimize Hangs or Freezes
If you’re using Mac OS X Leopard, Snow Leopard of Lion, your Mac OS may hang when you to to minimize a window, be it from the yellow circle icon in the titlebar, the window menu, or the command+m key combination. After searching for many tips and trying to close running programs (like the ones near the clock), I realized that I needed to adjust the Dock Preferences to allow minimizing to function correctly: The main keys for me were changing from Genie to Scale effect, and then back to Genie, and unchecking the box that said “minimize into application icon” Hopefully this will help you. Leave a comment if it works.
mac: opposite of command m
use the Command-Tab shortcut to get to the application. With the application selected press the Option key and release the Command key. One minimized window of the application will become un-minimized (if you have more than one minimized application window, you have to un-minimize the other windows the old fashioned way). Alternatively you can use a utility like FastScripts to assign a keyboard shortcut to an Applescript file. I have set up Cmd+Option+M to run the following script which seems to work fine for most applications on OS X Lion: tell application (path to frontmost application as text) try set miniaturized of windows to false — most apps end try try set collapsed of windows to false — Finder end try end tell — Hack from willshouse.com to make sure Finder really does unminimize windows if (name of (info for (path to frontmost application)) as text) is “Finder.app” then try tell application “Finder” set collapsed of windows to false — Finder end tell end try end if