| Feature: Shortcut to
insert non-breaking space and non-breaking hyphen Default Shortcut
Keys:
Ctrl+Shift+-: Insert Non-breaking
Hyphen
Ctrl+Shift+Space: Insert Non-breaking Space
Description:
Microsoft Word allows you to use keyboard
shortcuts for inserting non-breaking hyphen and non-breaking space.
Microsoft PowerPoint lacks this feature. Shortcuts for PowerPoint
introduces this feature. The default shortcut assignments match those
available with Microsoft Word.
For calling from macros:
Sub PPShortcuts_InsertNonBreakingHyphen()
Application.Run "PPShortcuts.ppa!InsertNonBreakingHyphen"
End Sub
Sub PPShortcuts_InsertNonBreakingSpace()
Application.Run "PPShortcuts.ppa!InsertNonBreakingSpace"
End Sub
|