var fDesc=new Array(); fDesc[0] = "The Lisp Extension allows you to open LSP files in AutoCAD.

Customization can be done opening bcad.mnu files installed in /Program Files (x86)/BabaCAD/BabaCAD/Support folder. There is a brief explanation at the top of the .mnu file of using custom icons for lisp commands. Users can edit their .lsp files using the BabaCAD's command LISPEDIT.

This command can be used for creating a new lisp file also, by typing a new Lisp file name when asked for it in the command line. Lisp can be used directly in the command line also. Type "(setq myvar (* 8.5 7)) there and hit Enter. Then type !myvar in the command line and hit Enter, and you will see the result of multiplying two real numbers."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }