advanced rendering for AutoCAD
I have a lisp file(zip tailor) written for autocad 2000 and am presently using 2011. It works no problem. Only that the nagging screen that comes up at the begining of every autocad session that is getting on my nerve. Any one out there with a an updated version or can help corrected it one would be very much appreciated.
Tags:
Hi Akinlolu,
There are two options :
1. In Text editor open Tailors.lsp file and insert semicolon remark character (;) before the firs 14 lines of code or copy and paste following lines into it. In AutoCAD load just LSP file, not the VLX.
2. Just delete the first line of code
(if (not (or (wcmatch (ver) "*14*") (wcmatch (ver) "*2000*")))
and paste this
(if (or (wcmatch (ver) "*14*") (wcmatch (ver) "*2000*"))
:-)
The danger of unpredictable results still exists, you'll just stop to see the dialog box on startup :)
Try this. Copy it to the directory with Tailors utilities.
Don't forget to load JUST the LISP file, not the VLX.
Here, the dialog disappeared.