Skip to main content
Known Participant
May 5, 2017
Answered

Can you set "Redefine Scaling to 100%" for text boxes as a default in Indesign?

  • May 5, 2017
  • 5 replies
  • 9158 views

When I open files the size of the text size appears as "21.491 pt(25.59)". Selecting text boxes on each page and selecting "Redefine Scaling to 100%" is very, very time consuming when I have to do this many times a day. Is there a way to open files and the font size just display what the font size actually is?

    This topic has been closed for replies.
    Correct answer SJRiegel

    I don't know of a way to change this globally - You will have to select-all on each page and fix it.

    To prevent it from continuing to happen, have whoever is making the files change (In General Preferences) the When Scaling to Apply to Content instead of Adjust Scaling Percentage.

    5 replies

    Community Expert
    September 17, 2020

    Hi Graham,

    with all versions of InDesign you can find the option "Redefine Scaling As 100%" in the Transform panel.

    Window > Object & Layout > Transform

     

    Regards,
    Uwe Laubender

    ( ACP )

     

    // EDITED

    grahams53471241
    Known Participant
    September 17, 2020

    I'm try ito fix the multiple font sizes problem.  Do you know where I can find redefine scaling to 100% in InDesign 15.1.2 (2020)? 

    rob day
    Community Expert
    Community Expert
    May 9, 2017

    Selecting text boxes on each page and selecting "Redefine Scaling to 100%" is very, very time consuming

    For existing documents resetting the scaling can be scripted. If you are using OSX this AppleScript should work:

    tell application "Adobe InDesign CC 2014"

        redefine scaling of every text frame of active document

    end tell

    vinny38
    Legend
    May 18, 2017

    And if you're a Windows user, here's the javascript version:

    scaledElements = app.activeDocument.allPageItems;

    for (i = 0; i < scaledElements.length; i++) {

        scaledElements.redefineScaling();

    }

    Save your doc before testing it... never know...

    Erica Gamet
    Inspiring
    May 8, 2017

    And when setting any preferences like that, do it with no document open, so that it becomes the default behavior for all new documents. I know it won't help with the current doc.

    SJRiegelCorrect answer
    Legend
    May 5, 2017

    I don't know of a way to change this globally - You will have to select-all on each page and fix it.

    To prevent it from continuing to happen, have whoever is making the files change (In General Preferences) the When Scaling to Apply to Content instead of Adjust Scaling Percentage.

    Participating Frequently
    November 16, 2021

    Thank you! Thank you! Thank you! I've been using InDesign for years and I've never found a good answer to how to turn this "fucntion" off. (It's simple to turn off, but dificult to search for). And I still don't know what the purpose of the Adust Scaling Percentage is. All I do know is that it's caused me a lot grief and time over the years.