Frontpage 2003. Removing all hyperlinks from specific pages *with* a macro???

  • Thread starter Macro-writer Wannabe
  • Start date
M

Macro-writer Wannabe

Hi there.

I need to remove all the hyperlinks from about 40 pages of my website, but am
growing weary of using "control K/alt R / control B" (I want the text to be bold
after the hyperlink is gone).

If I have never written a macro before, would it take longer to learn how to do
that then it would to just keep plugging along page after page after (sigh..)
page using this method???

Is it even possible to write a macro that would understand what I'm trying to
do???

I've google to no avail so I'm hoping you'll be able to advise me!

With Gratitude in Advance of Your Reply,

Macro-writer Wannabe
 
T

Thomas A. Rowe

You could use Search and Replace in Code View to remove the hyperlink, if is all the same link then
you could do this in one step.

ex.

Search for:

<a href="http://www.somesite.com">SomeSite</a>

and replace with:

<b>SomeSite</b>

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Top