Hyperlink Property
Applies To
ActionSetting object.
Description
Returns a Hyperlink object that represents the hyperlink for the specified shape. For the hyperlink to be active during a slide show, the Action property must be set to ppActionHyperlink. Read-only.
Example
This example sets shape one on slide one in the active presentation to jump to the Microsoft Web site when the shape is clicked during a slide show.
With ActivePresentation.Slides(1).Shapes(1).ActionSettings(ppMouseClick)
.Action = ppActionHyperlink
.Hyperlink.Address = "http://www.microsoft.com"
End With