in reply to Win32:OLE MS-Word comment bubbles
Pretty much all of VBA can be translated to Win32::OLE calls, so you can use Microsoft's VBA documentation. Some quick Googling brings me to the Document.DeleteAllComments method, and this works for me:
use Win32::OLE; my $Word = Win32::OLE->GetActiveObject('Word.Application'); $Word->{ActiveDocument}->DeleteAllComments;
|
|---|