How to get and/or overwrite the minimum size of windows in Mac OSX
问题 I want to resize any window on my machine, which I accomplish with AppleScript, using GUI Scripting. The script looks similar to the following: tell application "System Events" set appProcess to the first process whose name is "Finder" set appWindow to the front window of appProcess set position of appWindow to {100, 100} set size of appWindow to {10, 10} end tell Even though I set the width and height to 10px, the Finder will resize to at least a width of 344px and a height of 236px. I