D
Derrick
Due to size limitations when storing hyperlinks how do I use the following
code to create multiple modules as configurable action buttons to use within
a presentation to link from on slide to the next. I am unable to use
Hyperlinks due to multiple failures and approx: 200 links within presentation
keep resetting and pointing to invalid locations. I found the following
information that will point to a http site, but I need the module once I
customize it to point to a particular slide (example - I click on a picture
and I want it to go to slide 8)
Option Explicit
Sub Fission(oBoom As Shape)
Dim vSaved As Boolean
vSaved = ActivePresentation.Saved
On Error Resume Next
With oBoom.ActionSettings(ppMouseClick)
.Hyperlink.Address = "http://" & _
oBoom.TextFrame.TextRange.Text
.Hyperlink.Follow
.Hyperlink.Delete
.Run = "Fission"
.Action = ppActionRunMacro
End With
ActivePresentation.Saved = vSaved
End Sub
code to create multiple modules as configurable action buttons to use within
a presentation to link from on slide to the next. I am unable to use
Hyperlinks due to multiple failures and approx: 200 links within presentation
keep resetting and pointing to invalid locations. I found the following
information that will point to a http site, but I need the module once I
customize it to point to a particular slide (example - I click on a picture
and I want it to go to slide 8)
Option Explicit
Sub Fission(oBoom As Shape)
Dim vSaved As Boolean
vSaved = ActivePresentation.Saved
On Error Resume Next
With oBoom.ActionSettings(ppMouseClick)
.Hyperlink.Address = "http://" & _
oBoom.TextFrame.TextRange.Text
.Hyperlink.Follow
.Hyperlink.Delete
.Run = "Fission"
.Action = ppActionRunMacro
End With
ActivePresentation.Saved = vSaved
End Sub