![]() |
#7
|
||||
|
||||
![]()
Hi ACA,
You could possibly use a macro like the following. It goes though all sentences in the document, asking for you to translate them. If you edit or leave a given sentence alone, the next sentence is selected. Pressing cancel exits the macro. Code:
Sub Translation_Assistant() Dim Rng As Range, Rslt With ActiveDocument For Each Rng In .Sentences With Rng .MoveEndWhile Cset:=" ", Count:=wdBackward .End = .End - 1 .Select If .Style <> "Trans" Then Rslt = InputBox("Please translate this sentence.", "Sentence translation", .Text) If Rslt = vbNullString Then Exit Sub .Text = Rslt .Style = "Trans" End If End With Next End With End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to link an action on one slide on a powerpoint with the same action on another | slevinmj | PowerPoint | 0 | 02-24-2011 05:38 AM |
Re-Calling Sent Email | freschij | Outlook | 1 | 12-06-2010 09:16 PM |
Change Action Setting Path | gskelton | PowerPoint | 0 | 02-27-2010 03:20 PM |
calling images with a button | sammer021486 | PowerPoint | 0 | 01-13-2010 08:24 AM |
Highlighted Selection on Action Settings | mos7sad | PowerPoint | 0 | 10-12-2009 07:48 AM |