-
Re: Difference between BricsCAD and AutoCAD Lisp
"_SWISO" is a preset view option. For these you don't use the restore option, just call the preset view name directly. e.g. (command "._VIEW" "_R" "_SWISO") ; …1 -
Re: ChangeDimScale command
Check if CHANGEDIMSCALE is LISP It looks like your CHANGEDIMSCALE command is probably a LISP routine making a number of command based calls. You could check for this by searching for it in the atoms …1 -
Re: surface slope arrows
You can use to create slope labels. To do this you will need to have already created a surface to work with.1 -
Re: .des compile file with DCL and another lisp
You can include .DCL files as a resource file when compiling to .DES. If you're doing this, then you may need to change your LISP to suit. If the lisp had a check to see whether the .DCL was availabl…1 -
Re: Is it possible to show/highlight the objects with errors find with AUDIT?
When you run AUDIT it reports the issues found to the command line. This includes the handle of the object, shown inside brackets. You can search on this handle in the Structure browser, which also g…1