Skip to main content
Participating Frequently
August 28, 2008
Question

Hyperlink problem

  • August 28, 2008
  • 4 replies
  • 534 views
Hi, i use hyperlink throughout my document. i used red color rectangle as apperance for all the hyperlink destination. but now i need to remove it for almost all the docs. i have more than 300 docs with 100s of page each. anyone can help me to provide the script to remove this color and make the rectangle as invisble. i use windows OS and CS3. please help.
This topic has been closed for replies.

4 replies

Peter Kahrel
Community Expert
Community Expert
August 28, 2008
>if you could help me by providing some more useful documents it would be great.

Well, there's this: http://oreilly.com/catalog/9780596528171/

It was written for CS2 but is largely valid for CS3. Just ignore what is said on searching; the rest should be fine, especially the first couple of chapters.

Peter
_vkramji_Author
Participating Frequently
August 28, 2008
First i thank for your script. it really works.

I am new to scripting, but i am eager to learn scripting. but the documents which adobe provides does not give me more idea. if you could help me by providing some more useful documents it would be great. so i can learn scripting. please help me. thanks
_vkramji_Author
Participating Frequently
August 28, 2008
Hi, can you please provide me the same code in VB.
Peter Kahrel
Community Expert
Community Expert
August 28, 2008
Open a bunch of documents, then run this one-liner:

app.documents.everyItem().hyperlinks.everyItem().visible = false;

(This makes the borders invisible, not the link itself as you might think.)

Peter