Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hello!
Is anyone aware of a way to change the markup fof the 'track/trace changes' feature into permanent text color? A pdf converter elsewhere cannot handle the markups of the track changes feature, therefore I have to code the quality of text (new, deleted, or unchanged) with permanent text color. Principally, I can do this by hand, but this is barely feasible with a longer document with lots of changes. Is there a way to perform this or does a macro exist? Thank you for any hint. Regards Alexander |
#2
![]() |
|||
|
|||
![]()
I replied to this same question yesterday. Probably in this
group... Cindy Meister |
#3
![]() |
|||
|
|||
![]()
"Cindy M -WordMVP-" schrieb im Newsbeitrag
news:VA.0000a659.0095e922@speedy... I replied to this same question yesterday. Probably in this group... It was in german Word group microsoft.public.de.word. Thank you for that reply. You proposed to change the text color by hand or to write a macro. Indeed, that was the very reason for me to post the question. Christian Fressdorf posted a makro in microsoft.public.de.word January 20 8:45 am. This macro was exactly what I was looking for, it works perfectly well: Sub MarkRevisions() Dim myRev As Revision ActiveDocument.TrackRevisions = False For Each myRev In Selection.Range.Revisions If myRev.Type = wdRevisionInsert Then myRev.Range.Font.Color = wdColorRed myRev.Range.Font.Underline = wdUnderlineSingle myRev.Accept ElseIf myRev.Type = wdRevisionDelete Then myRev.Range.Font.Underline = wdUnderlineWavy myRev.Range.Font.Color = wdColorBlue myRev.Reject End If Next myRev End Sub Regards Alexander |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
unable to change text color | Microsoft Word Help | |||
Automatically changing text when another text is changed | Microsoft Word Help | |||
I'm trying to change the text shadow color from gray to a darker . | Microsoft Word Help | |||
How do you create a Word template with permanent text fields? | Microsoft Word Help | |||
Fading color in background of text | Microsoft Word Help |