load lisp command
<!-- @page { margin: 2cm } P { margin-bottom: 0.21cm } -->
In Briscad V10 menu command that loads the lisp not working properly.
The commands are defined as follows:
^C^C^P(if(not c:geInitial);(load "lisp/Initial0"));geInitial
If the command "geInitial" is not loaded, it should load the file "Initial0.lsp" from lisp directory and then run "geInitial”. This works well in V9 but not V10.
Thanks.
0
Comments
-
Just remove the semi colons:
^C^C^P(if(not c:geInitial)(load "lisp/Initial0"))geInitial0 -
thanks, the correct form is
^C^C^P(if(not c:geInitial)(load "lisp/Initial0"));geInitial
0 -
Carlos you are right. The code in my previous post (#2) does work in BC7 but not in BC10.
0
This discussion has been closed.