A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
While the setting is not in the interface, a simple macro will change the setting for you.
The default speed is 1. Changing the AdvanceTime value to 2 speeds up the characters.
Sub test()
With ActiveWindow.Selection.ShapeRange.AnimationSettings
.AdvanceMode = ppAdvancedOnTime
.AdvanceTime = 2
End With
End Sub