Tools>Macro
Sub Exportarcomentarios()
Dim miRango As Range
If ActiveDocument.Comments.Count >= 1 Then
Set miRango = ActiveDocument.Comments(1).Range
miRango.WholeStory
miRango.Copy
Documents.Add.Content.Paste
End If
End Sub
Corpus linguistics, applied linguistics & technology in language education
Tools>Macro
Sub Exportarcomentarios()
Dim miRango As Range
If ActiveDocument.Comments.Count >= 1 Then
Set miRango = ActiveDocument.Comments(1).Range
miRango.WholeStory
miRango.Copy
Documents.Add.Content.Paste
End If
End Sub