Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
2

View menu > Fit Width?

Community Expert ,
Jul 13, 2022 Jul 13, 2022

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!

TOPICS
Feature request
385
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jul 13, 2022 Jul 13, 2022

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

 

Translate
Community Expert ,
Jul 13, 2022 Jul 13, 2022

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. 🙂

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 13, 2022 Jul 13, 2022

@Jeff Witchel, ACI:

 

I'll vote for it if you add it as a feature request. Just post the link here.

 

~Barb

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 13, 2022 Jul 13, 2022

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);

 

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 13, 2022 Jul 13, 2022
LATEST

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...

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines