Hyperlinks Property
Applies To
Master object, Slide object, SlideRange collection object.
Description
Returns a Hyperlinks collection that represents all the hyperlinks on the specified slide. Read-only.
Example
This example allows the user to update an outdated internet address for all hyperlinks in the active presentation.
oldAddr = InputBox("Old internet address")
newAddr = InputBox("New internet address")
For Each s In ActivePresentation.Slides
For Each h In s.Hyperlinks
If LCase(h.Address) = oldAddr Then h.Address = newAddr
Next
Next