Want to intercept "CTRL + click to follow link" on hyperlink

H

Heidi

How can I intercept "CTRL + click to follow link" and/or "Click to follow
link" in VBA?

If I right-click on a hyperlink and choose "open hyperlink", I can intercept
that by adding a VB macro:

Sub HyperlinkOpen()
Selection.Range.Hyperlinks(1).Follow AddHistory:=True
End Sub

but clicking (or control+click) on the hyper link does not go to the same
macro. Can anyone help?
Thanks,
Heidi
 
Top