PPT 2003 Photo Album

  • Thread starter Thread starter redrover
  • Start date Start date
R

redrover

I'm using PPT 2003 and have created a photo album. I want to put a hyperlink
on each slide that sends me back to slide #1. I've put the link on the
master slide but I can't get it to display on top of the pictures. If I drag
the picture to the side I can see the link on the slide behind the picture.
Is there any way to do this without copying it on each slide?
 
With insertion with the Album photo, you can always find a "free" place,
generally down left or right of the slide. At least, that's what I use
 
If your pics are full screen the shape on the master will always be at the
back and hidden.

Here's a code solution:

On a slide place a button linked to first slide, select it and run this code.

Sub copymel()
Dim osld As Slide
If ActiveWindow.Selection.Type <> ppSelectionShapes Then Exit Sub
ActiveWindow.Selection.ShapeRange(1).Cut
For Each osld In ActivePresentation.Slides
osld.Shapes.Paste
Next osld
End Sub

Don't know what to do with code?
"How to use code in a presentation"
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html#vba

--
Amazing PPT Hints, Tips and Tutorials

http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html
_______________________________

We''re at PPTLive - see you there?
www.pptlive.com
 
Back
Top