Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

track changes color

5 views
Skip to first unread message

Sue

unread,
Oct 20, 2003, 12:27:37 PM10/20/03
to
A few months ago there was a discussion about a macro for
changing the colors of the insertion and deletion for
track changes in Word 2002. I printed out the comments
and the macro but now cannot find my papers. Would someone
please point me in the direction the macro is located.
Thank you very much.

Greg

unread,
Oct 20, 2003, 1:58:59 PM10/20/03
to
Sue,

You should be able to apply a form of the following:


Sub TrackChanges()
'
' Thanks Shauna!! Shauna Kelly provided me
' the basic format of this macro last year when I started
' using Word2002. Alter which lines run by adding or moving
' (the apostrophe) before each line.

With Application.Options
.RevisedLinesMark = wdRevisedLinesMarkOutsideBorder
.RevisedLinesColor = wdAuto
' .DeletedTextMark = wdDeletedTextMarkCaret
' .DeletedTextMark = wdDeletedTextMarkStrikeThrough
' .DeletedTextMark = wdDeletedTextMarkNone
.DeletedTextColor = wdRed
' .DeletedTextMark = wdDeletedTextMarkHidden
.InsertedTextMark = wdInsertedTextMarkItalic
.InsertedTextMark = wdInsertedTextMarkNone
.InsertedTextColor = wdBlue
' .InsertedTextMark = wdInsertedTextMarkUnderline
' .InsertedTextMark = wdInsertedTextMarkColorOnly
' .InsertedTextColor = wdAuto
' .RevisedPropertiesMark =
wdRevisedPropertiesMarkColorOnly
' .RevisedPropertiesColor = wdAuto
' .RevisedPropertiesMark =
wdRevisedPropertiesMarkColorOnly
' .RevisedPropertiesColor = wdViolet

End With
End Sub

>.
>

0 new messages