h a l f b a k e r yNaturally, seismology provides the answer.
add, search, annotate, link, view, overview, recent, by name, random
news, help, about, links, report a problem
browse anonymously,
or get an account
and write.
register,
|
|
|
Please log in.
Before you can vote, you need to register.
Please log in or create an account.
|
A menu command that highlights a phrase in the current document or selected text.
this would be easy to add to any modern OS. Potentially quite useful when you need to see multiple occurences of one or more phrases in a long document (think Google's cache-with-highlight feature)
Global text highlighting tool
http://www.textspotlight.com/ Highlight every occurence of your keywords, search terms, phrases etc. in all open desktop windows. [terrylane, Oct 04 2004]
[link]
|
|
Excellent suggestion! There is a way to do this in Word, but it is complex: |
|
|
Choose "Replace" from the "Edit" menu (or Ctrl-H)
Type the phrase to be highlighted in the "Find what:" box
Type the same phrase in the "Replace with:" box
With the cursor still blinking in the "Replace with:" box, select "Highlight" from the "Format" menu
Click "Replace All" |
|
|
Voila: all instances of the phrase highlighted. |
|
|
Macro to automate the above in Microsoft Word: |
|
|
Sub Highlighter()
myString = InputBox("Enter the string to highlight:", "Highlighter")
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = myString
.Replacement.Text = myString
.Replacement.Highlight = True
.Forward = True
.Wrap = wdFindContinue
.Format = True
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
|
|
| |