Returns a Hyperlinks collection that represents all the hyperlinks on the specified slide. Read-only.
For information about returning a single member of a collection, see Returning an Object from a Collection.
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