Extend Window Beyond Bottom of Screen on MacOS
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,
macos multiple-monitors external-display screen-capture macos-highsierra
add a comment |
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,
macos multiple-monitors external-display screen-capture macos-highsierra
add a comment |
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,
macos multiple-monitors external-display screen-capture macos-highsierra
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,
macos multiple-monitors external-display screen-capture macos-highsierra
macos multiple-monitors external-display screen-capture macos-highsierra
asked Jan 3 at 2:57
Leopold JoyLeopold Joy
1012
1012
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
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
Jan 6 at 19:53
@LeopoldJoy I get the same error with you. It seems likeGoogle Earth Pro
cannot be controlled by Apple Script
– Yoric
Jan 7 at 11:13
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1390024%2fextend-window-beyond-bottom-of-screen-on-macos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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
Jan 6 at 19:53
@LeopoldJoy I get the same error with you. It seems likeGoogle Earth Pro
cannot be controlled by Apple Script
– Yoric
Jan 7 at 11:13
add a comment |
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.
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
Jan 6 at 19:53
@LeopoldJoy I get the same error with you. It seems likeGoogle Earth Pro
cannot be controlled by Apple Script
– Yoric
Jan 7 at 11:13
add a comment |
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.
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.
answered Jan 3 at 3:28
YoricYoric
3196
3196
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
Jan 6 at 19:53
@LeopoldJoy I get the same error with you. It seems likeGoogle Earth Pro
cannot be controlled by Apple Script
– Yoric
Jan 7 at 11:13
add a comment |
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
Jan 6 at 19:53
@LeopoldJoy I get the same error with you. It seems likeGoogle Earth Pro
cannot be controlled by Apple Script
– Yoric
Jan 7 at 11:13
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
Jan 6 at 19:53
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
Jan 6 at 19:53
@LeopoldJoy I get the same error with you. It seems like
Google Earth Pro
cannot be controlled by Apple Script– Yoric
Jan 7 at 11:13
@LeopoldJoy I get the same error with you. It seems like
Google Earth Pro
cannot be controlled by Apple Script– Yoric
Jan 7 at 11:13
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1390024%2fextend-window-beyond-bottom-of-screen-on-macos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown