Hey all, while we wait another 10 years for Adobe to consider addressing this ridiculous shortcoming, Mac users might try this Applescript (adjust coordinates to suit you, and note that it will affect all document windows):
tell application "System Events" to tell process "Adobe Illustrator"
repeat with x from 1 to count of windows
if name of window x is not "Adobe Illustrator 2026" then
set position of window x to {320, 100}
set size of window x to {1920, 1400}
end if
end repeat
end tell
Hey all, while we wait another 10 years for Adobe to consider addressing this ridiculous shortcoming, Mac users might try this Applescript (adjust coordinates to suit you, and note that it will affect all document windows):
tell application "System Events" to tell process "Adobe Illustrator"
repeat with x from 1 to count of windows
if name of window x is not "Adobe Illustrator 2026" then
set position of window x to {320, 100}
set size of window x to {1920, 1400}
end if
end repeat
end tell
Feel free to improve and post.