Anyone have a simple answer for this?

Thanks
Hi, Catstretch.catstretch wrote:Related question. I'm a newbie and trying to figure out this newbie thing. The problem I am having is that the manual says find and replace should be structured:
Find/Replace`"Find`Pattern"`"Replacement`Pattern" "Options"
But I've figured out that it really needs to be:
Find and Replace 'Find Pattern', 'Replacement Patters', 'Options'
Code: Select all
Find "Find_Text", "a"
Format:Highlight:Yellow
Perhaps you have an old copy of the User Guide; in the current guide that page is a listing in the index. You can always get to the most recent copy of the guide by choosing the menu Help > Nisus Writer Pro Help.catstretch wrote:I found it on page 365 of the User's Guide.
As Henry mentioned the colors are listed on the menu Format > Highlight. You might also check the menu Format > Background Color, which has more choices.Is there a way for me to know what colors are available?
Code: Select all
Find All "blue"
$color = Color.newWithRGB(0.2, 0.7, 1.0)
Set Background Color $color
Sure, just chain together multiple find commands:More importantly, is there a way for me to highlight multiple words and either highlight them at the same time or one after another?
Code: Select all
Find All "yellow"
:Format:Highlight:Yellow
Find All "red"
:Format:Background Color:Red
Find All "blue"
$color = Color.newWithRGB(0.2, 0.7, 1.0)
Set Background Color $color