Applescript make tall windows without autoresizing?
Yos,
I have a PowerMac hooked up to 6 projector displays, making one giant desktop on my lab wall made out of 6 screens, arranged 3 across and 2 high. The individual displays are 1280x800.
I am writing Applescript code to open a bunch of Safari windows and lay them randomly around this giant, awesomely awesome screen. This is fairly easy just by opening a URL and setting the bounds of the window. Applescript seems to recognize the whole thing as a single coordinate system 3840x1600 in size when I set the window bounds.
There is one problem I can't get around, however: if I ever try to create a window taller than 800 pixels, it gets snapped to 800 pixels and the window position is snapped to the top of a single screen. I have no problems making very wide windows just by setting the bounds eg {10, 10, 3010, 610}. But if I try {10, 10, 610, 1210} it will snap the bounds to {0, 0, 600, 800}.
I also have this problem when using the mouse. I can stretch a window really tall, but if I try to move it, it will snap to the top half of my display. It is not a Safari issue, but a problem with pretty much any application. Is there any way to disable this feature, or otherwise get Applescript to make a window tall without the UI saying "oh no you don't"?
Thanks!