PDA

View Full Version : disable hyperlinks



dave
05-10-2006, 06:35 PM
To deactivate the variable (tools/option/user preference/hyperlink)

1. Edit your PID-SUP.LSP file and do a search for HYPERLINK.
2. Set the following:

;; Turn Hyper Link Tooltip off
(if (= (at_Sys_getAcadVer) 15)
(command "._hyperlinkoptions" "_N") Remove the "_Y". This will disable the Hyperlink option.

3. Save and Exit.

Also FYI:

Please refer to the following solution to turn on and off the URL update features:

How do I toggle the URL update function on and off during the save process?
1. Edit your PID-SUP.LSP file and do a search for URL. Click the Find Next button three times and you should come to the section shown in step 2 below.

2. To turn off the function, remark out the bottom two lines. You can also choose to rem out either of the two lines to set it to automatic or user prompt.

It should look like the following:

URL attachment variables

These attachments are made on any save command.

There are 2 modes inwhich the URL attachment works. Set to 1 for automatic update,

set to 2 for a prompt before update. Comment both for no update.

Uncomment for either Automatic or Prompt URL update

(setq URLLinkAttach 1)

(setq URLLinkAttach 2)

3. Save and Exit

4. Open your AT.INI and locate the [P&ID] section.

5. URLUPDATE=1

6. Set it to 1 to turn it on and 0 to turn it off

7. Save and Exit