| Feature: Select Pen Color
During Slide Shows Default Shortcut
Keys: <None>
Description:
Shortcuts for PowerPoint implements
functions that enables you to select one of the 9 pen color using a
keyboard shortcut during slide show..
For calling from macros:
Sub PPShortcuts_SelectBlackPen()
Application.Run "PPShortcuts.ppa!SelectBlackPen"
End Sub
Sub PPShortcuts_SelectWhitePen()
Application.Run "PPShortcuts.ppa!SelectWhitePen"
End Sub
Sub PPShortcuts_SelectRedPen()
Application.Run "PPShortcuts.ppa!SelectRedPen"
End Sub
Sub PPShortcuts_SelectGreenPen()
Application.Run "PPShortcuts.ppa!SelectGreenPen"
End Sub
Sub PPShortcuts_SelectBluePen()
Application.Run "PPShortcuts.ppa!SelectBluePen"
End Sub
Sub PPShortcuts_SelectCyanPen()
Application.Run "PPShortcuts.ppa!SelectCyanPen"
End Sub
Sub PPShortcuts_SelectMagentaPen()
Application.Run "PPShortcuts.ppa!SelectMagentaPen"
End Sub
Sub PPShortcuts_SelectYellowPen()
Application.Run "PPShortcuts.ppa!SelectYellowPen"
End Sub
Sub PPShortcuts_SelectGreyPen()
Application.Run "PPShortcuts.ppa!SelectGreyPen"
End Sub
|