Is there a command to extend a guide in Indesign over the entire pasteboard; or limit it to the page?
When I draw guides in InDesign, there are two possible end results: the guide covers the entire pasteboard, or it stops at the page edge.
I know that I can control this difference by the location of my cursor when I release my click-drag for creating or editing the guide.
Is there a way to toggle a guide from the one type to the other without having to click and drag it again? I find that my click-dragging usually moves the guide by a little, and I like them in the location I put them.
adobe-indesign guides
add a comment |
When I draw guides in InDesign, there are two possible end results: the guide covers the entire pasteboard, or it stops at the page edge.
I know that I can control this difference by the location of my cursor when I release my click-drag for creating or editing the guide.
Is there a way to toggle a guide from the one type to the other without having to click and drag it again? I find that my click-dragging usually moves the guide by a little, and I like them in the location I put them.
adobe-indesign guides
Comments are not for extended discussion; this conversation has been moved to chat.
– Emilie♦
Nov 17 '18 at 13:00
add a comment |
When I draw guides in InDesign, there are two possible end results: the guide covers the entire pasteboard, or it stops at the page edge.
I know that I can control this difference by the location of my cursor when I release my click-drag for creating or editing the guide.
Is there a way to toggle a guide from the one type to the other without having to click and drag it again? I find that my click-dragging usually moves the guide by a little, and I like them in the location I put them.
adobe-indesign guides
When I draw guides in InDesign, there are two possible end results: the guide covers the entire pasteboard, or it stops at the page edge.
I know that I can control this difference by the location of my cursor when I release my click-drag for creating or editing the guide.
Is there a way to toggle a guide from the one type to the other without having to click and drag it again? I find that my click-dragging usually moves the guide by a little, and I like them in the location I put them.
adobe-indesign guides
adobe-indesign guides
edited Nov 16 '18 at 11:12
Vincent
asked Nov 15 '18 at 15:27
VincentVincent
19.2k1573111
19.2k1573111
Comments are not for extended discussion; this conversation has been moved to chat.
– Emilie♦
Nov 17 '18 at 13:00
add a comment |
Comments are not for extended discussion; this conversation has been moved to chat.
– Emilie♦
Nov 17 '18 at 13:00
Comments are not for extended discussion; this conversation has been moved to chat.
– Emilie♦
Nov 17 '18 at 13:00
Comments are not for extended discussion; this conversation has been moved to chat.
– Emilie♦
Nov 17 '18 at 13:00
add a comment |
2 Answers
2
active
oldest
votes
Run this JavaScript:
app.selection[0].fitToPage ^= true;
… with a guide selected, of course.
You shot faster than me ^^ Nice one!
– Vinny
Nov 15 '18 at 16:35
add a comment |
I am unaware of a command to systematically convert guides between page-only and drawing board guides without direct users interaction with the guide itself. That doesn't mean one doesn't exist, merely that I'm completely unaware of such a command.
The only way I know to covert existing guides is to click them. As you know, were you release makes all the difference. You can click a page-only guide, drag the mouse outside the page and release, then it's a drawing board guide (or see the hot key below for page-only guides). And vice versa - click a drawing board guide, have the cursor over the page, and release, it becomes a page-only guide.
I am aware this does not solve the "Damn! I moved that 2pts" issue. Which is annoying to me as well.
When dragging guides, if you are letting go on the page, holding Command/Ctrl when you release the guide will make it a drawing board guide, as opposed to a page-only guide. You'll see it extend as soon as you hold Command/Ctrl. I don't think there's a command when dragging and creating a drawing board guide to restrict it to the page though.
And holding Option/Alt key while dragging a guide will rotate the guide 90°, making a horizontal drag create a vertical guide and vice versa.
That's lots of flowery language :) Thanks, Scott.
– Vincent
Nov 15 '18 at 16:08
indeed it is :)
– Scott
Nov 15 '18 at 16:13
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "174"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fgraphicdesign.stackexchange.com%2fquestions%2f117166%2fis-there-a-command-to-extend-a-guide-in-indesign-over-the-entire-pasteboard-or%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Run this JavaScript:
app.selection[0].fitToPage ^= true;
… with a guide selected, of course.
You shot faster than me ^^ Nice one!
– Vinny
Nov 15 '18 at 16:35
add a comment |
Run this JavaScript:
app.selection[0].fitToPage ^= true;
… with a guide selected, of course.
You shot faster than me ^^ Nice one!
– Vinny
Nov 15 '18 at 16:35
add a comment |
Run this JavaScript:
app.selection[0].fitToPage ^= true;
… with a guide selected, of course.
Run this JavaScript:
app.selection[0].fitToPage ^= true;
… with a guide selected, of course.
answered Nov 15 '18 at 16:15
usr2564301usr2564301
3,8102923
3,8102923
You shot faster than me ^^ Nice one!
– Vinny
Nov 15 '18 at 16:35
add a comment |
You shot faster than me ^^ Nice one!
– Vinny
Nov 15 '18 at 16:35
You shot faster than me ^^ Nice one!
– Vinny
Nov 15 '18 at 16:35
You shot faster than me ^^ Nice one!
– Vinny
Nov 15 '18 at 16:35
add a comment |
I am unaware of a command to systematically convert guides between page-only and drawing board guides without direct users interaction with the guide itself. That doesn't mean one doesn't exist, merely that I'm completely unaware of such a command.
The only way I know to covert existing guides is to click them. As you know, were you release makes all the difference. You can click a page-only guide, drag the mouse outside the page and release, then it's a drawing board guide (or see the hot key below for page-only guides). And vice versa - click a drawing board guide, have the cursor over the page, and release, it becomes a page-only guide.
I am aware this does not solve the "Damn! I moved that 2pts" issue. Which is annoying to me as well.
When dragging guides, if you are letting go on the page, holding Command/Ctrl when you release the guide will make it a drawing board guide, as opposed to a page-only guide. You'll see it extend as soon as you hold Command/Ctrl. I don't think there's a command when dragging and creating a drawing board guide to restrict it to the page though.
And holding Option/Alt key while dragging a guide will rotate the guide 90°, making a horizontal drag create a vertical guide and vice versa.
That's lots of flowery language :) Thanks, Scott.
– Vincent
Nov 15 '18 at 16:08
indeed it is :)
– Scott
Nov 15 '18 at 16:13
add a comment |
I am unaware of a command to systematically convert guides between page-only and drawing board guides without direct users interaction with the guide itself. That doesn't mean one doesn't exist, merely that I'm completely unaware of such a command.
The only way I know to covert existing guides is to click them. As you know, were you release makes all the difference. You can click a page-only guide, drag the mouse outside the page and release, then it's a drawing board guide (or see the hot key below for page-only guides). And vice versa - click a drawing board guide, have the cursor over the page, and release, it becomes a page-only guide.
I am aware this does not solve the "Damn! I moved that 2pts" issue. Which is annoying to me as well.
When dragging guides, if you are letting go on the page, holding Command/Ctrl when you release the guide will make it a drawing board guide, as opposed to a page-only guide. You'll see it extend as soon as you hold Command/Ctrl. I don't think there's a command when dragging and creating a drawing board guide to restrict it to the page though.
And holding Option/Alt key while dragging a guide will rotate the guide 90°, making a horizontal drag create a vertical guide and vice versa.
That's lots of flowery language :) Thanks, Scott.
– Vincent
Nov 15 '18 at 16:08
indeed it is :)
– Scott
Nov 15 '18 at 16:13
add a comment |
I am unaware of a command to systematically convert guides between page-only and drawing board guides without direct users interaction with the guide itself. That doesn't mean one doesn't exist, merely that I'm completely unaware of such a command.
The only way I know to covert existing guides is to click them. As you know, were you release makes all the difference. You can click a page-only guide, drag the mouse outside the page and release, then it's a drawing board guide (or see the hot key below for page-only guides). And vice versa - click a drawing board guide, have the cursor over the page, and release, it becomes a page-only guide.
I am aware this does not solve the "Damn! I moved that 2pts" issue. Which is annoying to me as well.
When dragging guides, if you are letting go on the page, holding Command/Ctrl when you release the guide will make it a drawing board guide, as opposed to a page-only guide. You'll see it extend as soon as you hold Command/Ctrl. I don't think there's a command when dragging and creating a drawing board guide to restrict it to the page though.
And holding Option/Alt key while dragging a guide will rotate the guide 90°, making a horizontal drag create a vertical guide and vice versa.
I am unaware of a command to systematically convert guides between page-only and drawing board guides without direct users interaction with the guide itself. That doesn't mean one doesn't exist, merely that I'm completely unaware of such a command.
The only way I know to covert existing guides is to click them. As you know, were you release makes all the difference. You can click a page-only guide, drag the mouse outside the page and release, then it's a drawing board guide (or see the hot key below for page-only guides). And vice versa - click a drawing board guide, have the cursor over the page, and release, it becomes a page-only guide.
I am aware this does not solve the "Damn! I moved that 2pts" issue. Which is annoying to me as well.
When dragging guides, if you are letting go on the page, holding Command/Ctrl when you release the guide will make it a drawing board guide, as opposed to a page-only guide. You'll see it extend as soon as you hold Command/Ctrl. I don't think there's a command when dragging and creating a drawing board guide to restrict it to the page though.
And holding Option/Alt key while dragging a guide will rotate the guide 90°, making a horizontal drag create a vertical guide and vice versa.
answered Nov 15 '18 at 16:04
ScottScott
148k14204420
148k14204420
That's lots of flowery language :) Thanks, Scott.
– Vincent
Nov 15 '18 at 16:08
indeed it is :)
– Scott
Nov 15 '18 at 16:13
add a comment |
That's lots of flowery language :) Thanks, Scott.
– Vincent
Nov 15 '18 at 16:08
indeed it is :)
– Scott
Nov 15 '18 at 16:13
That's lots of flowery language :) Thanks, Scott.
– Vincent
Nov 15 '18 at 16:08
That's lots of flowery language :) Thanks, Scott.
– Vincent
Nov 15 '18 at 16:08
indeed it is :)
– Scott
Nov 15 '18 at 16:13
indeed it is :)
– Scott
Nov 15 '18 at 16:13
add a comment |
Thanks for contributing an answer to Graphic Design Stack Exchange!
- 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%2fgraphicdesign.stackexchange.com%2fquestions%2f117166%2fis-there-a-command-to-extend-a-guide-in-indesign-over-the-entire-pasteboard-or%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
Comments are not for extended discussion; this conversation has been moved to chat.
– Emilie♦
Nov 17 '18 at 13:00