Skip to main content
cillan47304961
Participant
September 5, 2018
Answered

Marking text in Indesign

  • September 5, 2018
  • 1 reply
  • 1333 views

When using the hotkey "cmd+a" for marking big amounts of text at the same time, Indesign lock itself up and I have to close the programme and start it all over again. Anyone who have a solution for this problem?

    This topic has been closed for replies.
    Correct answer Laubender

    Hi Cilla,

    were you successful with GREP Find/Replace running on your long story?

    Best,
    Uwe


    FWIW: I did some tests with InDesign CC 2019 version 14.0.1.209 ( that's the bug fix version from InDesign Prerelease ).

    I cannot see any delay after selecting all text in my 300 pages document with one story running through all the pages.

    So I think this bug is fixed.

    However not for CC 2018.1 or any version before down to CC 2015.

    CC 2014, CC version 9.3.0 and CS6 never had that problem.

    All tests done on my German Windows 10 machine.

    Regards,
    Uwe

    1 reply

    Community Expert
    September 5, 2018

    Hi cillan47304961 ,

    I think this is a known bug with InDesign. I see this with my installed versions CC 2015.4, CC 2017.1, CC 2018.1.

    Not with versions CC 2014, CC v9.3 and CS6 before. The bug is not resolved yet.

    How long did you wait until you killed the operation?

    I see a delay of about 4 to 5 seconds with a 200 pages document with one story that flows from page to page. Others reported longer delays up to some minutes depending on the length of the story or the complexity of formatting in the story, especially with fully formatted tables.

    My tests are with InDesign on Windows 10.

    What is your OS? What is your exact version of InDesign?

    Regards,
    Uwe

    cillan47304961
    Participant
    September 5, 2018

    I waited for several minutes without anything happening, and I have tried to not use the hotkey but with the same result. It is really annoying.

    OS 10.13.2 and Indesign 13.1.

    Kind regards,
    Cilla

    cillan47304961
    Participant
    September 5, 2018

    Here is different code snippet that will work without doing changes in the code.

    To get it right select a bit text in your story you want to apply the paragraph style to.

    Format the one paragraph of your selection to the one you like to use for the whole story. The script will pick up that style of your selection and applies it to all text of the story that belongs to your selection.

    ( function()

    {

        if( app.documents.length == 0 ){ return };

        if( app.selection.length != 1 ){ return };

        if( !app.selection[0].hasOwnProperty("baselineShift") ){ return };

      

        var paraStyle = app.selection[0].appliedParagraphStyle ;

        app.selection[0].parentStory.texts[0].appliedParagraphStyle = paraStyle ;

    }() )

    Best,
    Uwe


    Hi,

    This is ufortunately a bit beyond my knowledge - I only use paragraph styles in Indesign, see picture below, and do not program myself.

    Or maybe I misunderstand you because my English is not good enough?

    /Cilla