pen option

  • Thread starter Pen option during slide show
  • Start date
P

Pen option during slide show

I want to make the pen automatically to be available when progressing to
certain slides. I also want to know if the pen can be used to with
hyperlinks.
karie
 
J

John Wilson

You cant use the pen to press hyperlink buttons etc (is that what you mean)

You can only make the pen auto available when jumping to certain slide with
vba code

eg
Sub pengo()
With ActivePresentation.SlideShowWindow.View
..GotoSlide (2)
..PointerType = ppSlideShowPointerPen
End With
End Sub
--

Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
 
Top