I have been trying to make a macrobutton work as a hyperlink (on an intranet) to docs other than Word and have at succeeded. So for anyone who wants a hyperlink in a protected area here is the macro to call up in the button field:
Sub link_go()
ActiveDocument.FollowHyperlink Address:= _
“emm4000.pdf”, NewWindow:=False _
, AddHistory:=True
End Sub
Any URL you like between the ” ” – my example is a relative URL with everything in the same directory.
In a browser it opens in the same window but on a harddrive it will open the new application in a seperate window.
I know it looks obvious but it’s a major triumph for me… Thanks to Charles Kenyon for tips.