Macro to Toggle Nudge Distance?

My Visual Basic skills are long outdated. Is it possible to write a macro that will toggle the Nudge Distance between .125" and 100" ?

 

Parents
No Data
Reply
  • Nudge does not appear in the VBA help file, so I don't think there will be a way to set it directly in a macro.

    VBA does have workspace.activate which is not something I've used, but suggests you could probably create two workspaces with different nudge settings, and use a macro to flip between them. But ... changing workspaces is a slow process and is probably best avoided for that reason, even if it works.

    As a possible alternative, you could perhaps create a macro/toolbar with four buttons that perform the same function as nudge.

Children