pen in presentation view

  • Thread starter Thread starter miss mclellan
  • Start date Start date
M

miss mclellan

Hola
Is there a way to choose the pen during a presentation without bringing up
the menu, or of defaulting th pointer to pen for a presentation?

Cheers

Jon
 
Feel up to a little VBA Macro?

Just, cut and paste the code below into a Macro ( more info at
http://www.rdpslides.com/pptfaq/FAQ00033.htm )

Then assign an 'Action Setting' in the 'Mouse Over' section under 'Run
Macro' to 'SetPointer'.

Whenever the mouse pointer passes over it, it will become a pen.

=====Begin Code=====
Sub SetPointer()
SlideShowWindows(1).View. _
PointerType = ppSlideShowPointerPen
End Sub
=====End Code=====

Hope this isn't too drawn out an explanation.

--
Bill Dilworth, Microsoft PPT MVP
===============
Please spend a few minutes checking vestprog2@
out www.pptfaq.com This link will yahoo.
answer most of our questions, before com
you think to ask them.

Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..
 
Hola
Is there a way to choose the pen during a presentation without bringing up
the menu, or of defaulting th pointer to pen for a presentation?

Press Ctrl+P

And while you've got a slide show going to try that out, press F1 also.
There's all kindsa handy keystrokes hidden away in there. ;-)
 
Back
Top