Having trouble hyperlinking between different presentations

J

J Brack

I am trying to hyperlink from presentation A (in slide show view) to
presentation B and close presentation A, all by single clicking on a
shape within a slide. Below is the macro I am using, but it only
works if I double click the shape. Any suggestions would be greatly
appreciated!

Sub opennewslide ()
With ActivePresentation.Slides(1).Shapes(41) _
.ActionSettings(ppMouseClick)
.Action = ppActionHyperlink
.Hyperlink.Address = "C:\Presentation B folder\Presentation
B.ppt"
End With
With Application.Presentations("Presentation B.ppt")
.Saved = True
.Close
End With
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top