View Single Post
 
Old 02-07-2013, 07:53 AM
amitrus amitrus is offline Mac OS X Office for Mac 2011
Novice
 
Join Date: Feb 2013
Posts: 2
amitrus is on a distinguished road
Default

Apologies for the cross-posting.

I managed to get a solution to the problem. The following works:

Sub CommentBubble()
'
' CommentBubble Macro
'
'
Dim range As range
Set range = ActiveDocument.Content

Do While range.Find.Execute("aaa") = True
ActiveDocument.Comments.Add range, "my comment"
Loop
End Sub
Reply With Quote