-
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 -
Re: HEA-Lisp is not working in BricsCAD
The issue is that the LISP is using "T" as a variable. This is possible in AutoCAD but not in BricsCAD. You need change the code to replace "T" with a different variable name e.g.…1