Copy link to clipboard
Copied
There are a lot of invaluable View commands under the View menu. But there's one command, I know would be very useful, but it does not exist—Fit Page Width.
Whenever I want to edit copy, I manually Zoom to the Width of the page I'm working on.
Is this a feature anyone else would be interested in?
Looking forward to responses!
Please vote for InDesign Feature Request:
View menu > Fit Page Width to Screen: https://indesign.uservoice.com/forums/601021-adobe-indesign-feature-requests?query=View%20Menu%20Fit%20Page%20Width%20to%20screen
Copy link to clipboard
Copied
Added options are usually a good thing for any feature, and I too often need to zoom to something like this level for close work. But Ctrl-Alt-0 and Ctrl-+ once or twice works for me. A keyboard or system macro could be used to make it a one-key solution customized to your preferences, too.
It's always a tradeoff between this feature expansion and keeping the monstrous menu and option management UI reasonable. 🙂
—
Copy link to clipboard
Copied
I'll vote for it if you add it as a feature request. Just post the link here.
~Barb
Copy link to clipboard
Copied
Hi Jeff, you can get the correct zoom percenatge to fit the document to the window width via scripting, although I don’t know of a way to adjust the horizontal scroll bar to center once the percentage has been changed. Try this:
app.scriptPreferences.measurementUnit = MeasurementUnits.PIXELS;
var doc = app.activeDocument;
var wb = app.activeWindow.bounds
var aw = (wb[3]-wb[1])-15
var docpx = doc.documentPreferences.pageWidth * (app.generalPreferences.mainMonitorPpi/72)
app.activeWindow.zoomPercentage = Math.round((aw/docpx)*100);
Copy link to clipboard
Copied
Please vote for InDesign Feature Request:
View menu > Fit Page Width to Screen: https://indesign.uservoice.com/forums/601021-adobe-indesign-feature-requests?query=View%20Menu%20Fit...
Find more inspiration, events, and resources on the new Adobe Community
Explore Now