Ctrl Click Hyperlink setting

R

redhdkat

how do I write a script using this?

Options.CtrlClickHyperlinkToOpen = False

I am trying to set Word, Tools, Options. Edit tab and
uncheck the Ctrl Click to follow hyperlinks setting.

I found the reference to the above object but don't know
how to use it.
Thanks for any help.
 
G

Greg Maxey

You could put it in an AutoOpen macro.

Sub AutoOpen()
Options.CtrlClickHyperlinkToOpen = False
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top