Not sure if this was posted before but here is something very interesting. Have you ran into applications that have windows that are too long to fit on the 1024x600 screen and prevent you from accessing those buttons? I have found a way to temporarilly/permanently fix that. Simply drop down to a terminal window and type:
Code:
defaults write -g AppleDisplayScaleFactor <scale factor>
So to get a virtual screen resolution of, say, close to 1280x750 you type:
Code:
defaults write -g AppleDisplayScaleFactor 0.8
Any new window that is open after this will be scaled down by 0.8, creating the illusion of it being in a 1280x750 screen.
If you want to make things permament type:
Code:
defaults write NSGlobalDomain AppleDisplayScaleFactor 0.8
My prefered solution would be to do it via a small menu bar item that could be selected to pick a 0.8 or 1.0 scale factor on the fly, for those darn applications that don't fit. But I now have to learn how to do this in Xcode.