Forum Discussion

Kazran's avatar
Kazran
Copper Contributor
Apr 08, 2020
Solved

"Always show hidden text" - How to force OFF permanently, or create shortcut to reset easily??

We are using Lexis Affinity software which keeps ticking the "always show hidden text box" in our Word profiles.  In our office we use many letter precedents with hidden text, but staff are unable to...
  • Jay Freedman's avatar
    Apr 11, 2020

    Kazran 

    You can install the following macro in each user's Normal.dotm template (or another .dotm template stored in the folder %appdata%\Microsoft\Word\STARTUP), and assign a shortcut and/or Quick Access Toolbar button to run it:

     

    Sub HideHiddenText()
         ActiveWindow.View.ShowHiddenText = False
    End Sub

     

    If the documents open with hidden text showing, you can make a copy of the same macro with "HideHiddenText" replaced by "AutoOpen", which will automatically execute each time a document is opened.

Resources