“Overtype” mode in MS Powerpoint 2007

microsoft-powerpoint-2007text editing

is there any way to turn on the "Overtyping" feature in Powerpoint 2007 (you press the Insert key and then typing new characters replaces any existing characters to the right side of the insertion point)?

In Word 2007 it's disabled by default, but it's possible to activate manually (Microsoft Office Button Button -> Word Options -> Advanced -> Under Editing options, select or clear the Use overtype mode check box)

In Powerpoint 2007 there are no such checkboxes. Any way to enable it through some VBA/Macro magic?

Thanks

Best Answer

Good question. An odd feature to be missing from a program as feature laden as powerpoint.

The 2007 powerpoint object model doesn't indicate there's help here either. The TextRange object only contains functions for insert, find/replace, and cursor position.

It might be possible to write a macro that deleted the character to the right of the cursor as you typed each character, simulating typeover, I don't think you want to go there.

Related Question