G
Guest
I am using PowerPoint 2003 with a Motion Tablet-PC and Windows XP Tablet PC
Edition 2005. During the presentation I need to write comments and drawings
in the slide. I wrote VBA 6.0 macros (with command buttons) to be able to
change the color of the pen quickly. For instance following macro creates a
(thick) red pen:
Private Sub CommandButtonRed_Click()
With ActivePresentation.SlideShowSettings.Run.View
.PointerColor.RGB = RGB(255, 0, 0)
.PointerType = ppSlideShowPointerPen
End With
End Sub
Questions:
How can I write a macro creating a thin pen (1/2 point or 1 point)?
How can I write a macro creating an highlighter pen?
In VBA 6.0 I do not recognize the appropriates commands.
Does somebody have an idea? Thank you very much for your help.
Sir Joe
NB: Why do I not use the popup menu of PowerPoint? Because it needs to much
time. For instance to create a pink highlighter I need 5 mouse clicks. With a
command button I need only 1 click.
Edition 2005. During the presentation I need to write comments and drawings
in the slide. I wrote VBA 6.0 macros (with command buttons) to be able to
change the color of the pen quickly. For instance following macro creates a
(thick) red pen:
Private Sub CommandButtonRed_Click()
With ActivePresentation.SlideShowSettings.Run.View
.PointerColor.RGB = RGB(255, 0, 0)
.PointerType = ppSlideShowPointerPen
End With
End Sub
Questions:
How can I write a macro creating a thin pen (1/2 point or 1 point)?
How can I write a macro creating an highlighter pen?
In VBA 6.0 I do not recognize the appropriates commands.
Does somebody have an idea? Thank you very much for your help.
Sir Joe
NB: Why do I not use the popup menu of PowerPoint? Because it needs to much
time. For instance to create a pink highlighter I need 5 mouse clicks. With a
command button I need only 1 click.