I've copied a bunch of text from a website & copied it into a Nisus doc. Is there an easy way (i.e. not involving writing a macro) to find all of the text that links to URLs so that I can remove the formatting? When I highlight a linked word & click "select all" from the bottom of my doc, it doesn't distinguish the underlined, HTML-linking text from plain text. It selects all of the words in the doc. Suggestions?
TIA,
Nick D.
finding HTML-linking text?
- martin
- Official Nisus Person
- Posts: 5230
- Joined: 2002-07-11 17:14:10
- Location: San Diego, CA
- Contact:
Re: finding HTML-linking text?
Hi Nick- it won't be possible to do what you want without a macro. That said, I'm not sure why you wouldn't want to use one. Here's a macro that simply selects all hyperlinked text in your document:
You can save it as a macro file and then use it just like any other single menu item.
Another macro that removes all hyperlinks from the document:
Code: Select all
$doc = Document.active
$linkSels = Array.new
Set Selection 1, 0
While Select Next Link
$linkSels.appendValue($doc.textSelection)
End
$doc.setSelections($linkSels)
Another macro that removes all hyperlinks from the document:
Code: Select all
Set Selection 1, 0
While Select Next Link
Contextual Menu "Remove Link"
End
Re: finding HTML-linking text?
Thanks a lot. That's exactly what I need. I'm a little disappointed that PowerFinder won't do this.
Nick D.
Nick D.