Message 1 of 7

Not applicable
08-16-2017
09:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
We have a startup LISP that we use for performance in Civil 3D 2016 and want to add a few more settings to it but stumped on how to add the
-INPUTSEARCHOPTIONS and make it turn off all the options or increase the time delay by 5-10 seconds.
Also to add in the LISP the AutoCAD options to turn off display paper shadow, paper background and uncheck display digital signature information.
Below is the code that we have and need the above code added to.
; Change settings for performance 08/15/2017 ; WHIPTHREAD default 1 (setvar "WHIPTHREAD" 3) ; SAVEFIDELITY default 1 (setvar "SAVEFIDELITY" 0) ; LAYOUTREGENCTL default 0 (setvar "LAYOUTREGENCTL" 2) ; controls the reinitialization of AutoLISP between drawings (setvar "LISPINIT" 1) ; Change SECURELOAD for 2016 WisDOT software (setvar "SECURELOAD" 0) ; SELECTIONPREVIEW default 3 (setvar "SELECTIONPREVIEW" 0) ; CURSORBADGE default 2 (setvar "CURSORBADGE" 1) ; DYNMODE default 3 (setvar "DYNMODE" 0)
Solved! Go to Solution.