I just can’t believe this :
tell application “Terminal”
activate
do script with command “bash”
end tell
– one would expect this :
– tell application “Terminal” to set bounds of front window to {0, 0, 1152, 768}
– Instead, one need to swap the bottom corner values to get it to work !!
tell application “Terminal” to set bounds of front window to {0, 0, 768, 1152}
Any idea ?
Dominique.
The coordinates are from the bottom of the screen rather than the top
This is driving me crazy !!
I don’t get it, sorry !!
I want to open two terminal windows. A bottom one, and a top one, both full width.
How can I do that ?
This is a bit odd…
tell me to set bounds of front window to {0, 0, 640, 480}
behaves differently from…
tell application "Terminal" to set bounds of front window to {0, 0, 640, 480}
strange 4 sure…