Extend Window Beyond Bottom of Screen on MacOS

0

I would like to extend one of my application windows below the bottom of the screen. I can easily extend it beyond the left/right sides (simply drag it to one side, then resize, and repeat), however I haven't been able to achieve a vertical resize of the window.

Is there a modification to the OS I can do to enable this behavior? I've also looked at simulating an external display, as I believe a higher resolution external display does enable resizing below the bottom of the screen; however I haven't seen anyway to make this work, and I don't have access to a real external display currently.

If you're wondering why I need to do this, it's for a screen capture software—I need to fit a large amount of content into the window at once.

Any ideas?

Thanks,

Leopold Joy

Posted 2019-01-03T02:57:06.170

Reputation: 101

Answers

0

Not sure how to unlock expending a window vertically beyond the screen.

1/ You may try to run an apple script like this:

tell application "XXX"
  set bounds of front window to {x, y, width, height}
end tell

with setting a high value for height. Like {30, 30, 1200, 4000}

2/ If it's to capture a web page, there are plugins for that.

3/ Or Snagit allows capturing with scrolling feature. But it won't be free after the trial expires.

Yoric

Posted 2019-01-03T02:57:06.170

Reputation: 359

Thanks for the response @yoric. Due to the nature of the application (Google Earth), #1 is the only option that would work for me. I tried it, however I'm getting this: error "Google Earth Pro got an error: Can’t set window 1 to {30, 30, 1200, 4000}." number -10006 from window 1.

I also tried this approach, however I'm getting: error "Google Earth Pro got an error: Can’t make position of window 1 into type specifier." number -1700 from position of window 1 to specifier.

– Leopold Joy – 2019-01-06T19:53:05.753

@LeopoldJoy I get the same error with you. It seems like Google Earth Pro cannot be controlled by Apple Script – Yoric – 2019-01-07T11:13:24.830