
Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> Greetings.
>
[quoted text clipped - 10 lines]
>
> Charles
John:
Unfortunately, the hyperlinked slides are spread out over
several folders. Not only that, but these folders frequently
contain other *.ppt files that don't pertain to my slideshow.
This is the reason that I'm interested in some method or
script for printing those slides hyperlinked to the main slide.
Any other ideas?
Regards,
Charles
> I answered your first thread Charles!
> http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?&query=C
harles+in+Iraq&lang=en&cr=us&guid=&sloc=en-us&dg=microsoft.public.powerpoint&p=1
&tid=51194fac-ed1b-45e3-a26b-3a99944e9f0c
[quoted text clipped - 13 lines]
> >
> > Charles
John Wilson - 13 Sep 2006 10:56 GMT
mAYBE SOMETHING LIKE THIS THEN:
Sub printhyperlinks()
Dim sFileName As String
Dim oSl As Slide
Dim oHl As Hyperlink
For Each oSl In ActivePresentation.Slides
For Each oHl In oSl.Hyperlinks
sFileName = Dir$(oHl.Address)
While sFileName <> ""
Set oPres = Presentations.Open(oHl.Address, msoFalse)
With oPres
.PrintOptions.PrintHiddenSlides = msoFalse
.PrintOut
End With
oPres.Close
Set oPres = Nothing
sFileName = Dir()
Wend
Next
Next
End Sub

Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> John:
>
[quoted text clipped - 28 lines]
> > >
> > > Charles
John Wilson - 13 Sep 2006 11:57 GMT
Or even this (CAPS lock under control now!)
Sub printhyperlinks()
Dim oSl As Slide
Dim oHl As Hyperlink
For Each oSl In ActivePresentation.Slides
For Each oHl In oSl.Hyperlinks
If oHl.Address <> "" Then
Set opres = Presentations.Open(oHl.Address, msoFalse)
With opres
.PrintOptions.PrintHiddenSlides = msoFalse
.PrintOut
End With
opres.Close
Set opres = Nothing
End If
Next
Next
End Sub

Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> mAYBE SOMETHING LIKE THIS THEN:
>
[quoted text clipped - 55 lines]
> > > >
> > > > Charles
Charles in Iraq - 14 Sep 2006 07:06 GMT
John:
Thanks. That was very useful. Shyam's post was also helpful.
One last question...is there a property I can set to print from
last slide to first slide, i.e. to print the slides in reverse order?
Regards,
Charles
> Or even this (CAPS lock under control now!)
>
[quoted text clipped - 16 lines]
> Next
> End Sub
John Wilson - 14 Sep 2006 12:15 GMT
Most printers have this facility built in.
Sometimes setting the print range to eg 10 - 1 does it

Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> John:
>
[quoted text clipped - 27 lines]
> > Next
> > End Sub