I just upgraded to Transmit 3, and I’m having trouble figuring out the syntax to get the bounds of a transfer window. What I’d like to do is have a Handler that creates a window and sets the bounds so that I can automate what screen real-estate it uses. Any help would be appreciated. Thanks
Sorry, wrong place (Code Exchange).
Looks like you need to loop:
tell application "Transmit"
repeat with w in every window
if name of w is "Transfers" then
set x to get bounds of w
set bounds of w to {0, 22, 600, 522}
end if
end repeat
end tell