pen option

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 

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

Back
Top