Finding Hyperlinks on Master Slide(s)?

G

Guest

I have written VBA code to find all hyperlinks on a PowerPoint presentation
- normal slides not master slides, but then I realized the author put some
hyperlinks on the master slide(s). How do you go about getting information
from a master slide?
 
D

David M. Marcovitz

Which version of PowerPoint are you using? With one master, I can access
the shapes on the master with:

ActivePresentation.SlideMaster.Shapes

--David

--
David M. Marcovitz
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
 
D

David M. Marcovitz

OK. Then I believe you want:

ActivePresentation.Designs(1).SlideMaster.Shapes

to access the first master. You can change the 1 to something else to
get to other masters, and you can use a variable and a loop to loop
through them. For more information, you might want to look at:

http://www.mvps.org/skp/designs.htm

Shyam always seems to have the right answer even when he is not here at
the moment.

--David

--
David M. Marcovitz
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
 

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