Word 2002 Record "unformatted text" paste Macro not working

A

Ariel

Am trying to create simple macro to paste clipboard
content in "unformatted text" option, but after recording
the macro, it will not work.

Any insight on why this doesn't work (followed direction
in "Help" to the "T")

or

How to set the default in "paste special" from HTML to
Unformatted Text?
 
K

Klaus Linke

Hi Ariel,
Am trying to create simple macro to paste clipboard
content in "unformatted text" option, but after recording
the macro, it will not work.

Just tried. The macro recorder recorded something like

Selection.PasteSpecial _
Link:=False, _
DataType:=20, _
Placement:=wdInLine, _
DisplayAsIcon:=False

which works fine.
How to set the default in "paste special" from HTML to
Unformatted Text?

I don't think that can be done :-(

Regards,
Klaus
 
Top