ZWSOFT User Community > ZWSOFT Forums - Find. Share. Connect. > ZWCAD > Load the Lisp application to ZWCAD
Load the Lisp application to ZWCAD
Load the Lisp application to ZWCAD
12-05-2008 03:15 . am | View his/her posts only
How to load the Lisp application to ZWCAD and what shall be paid attention to while loading?
ffice
ffice" />
You can enter Appload on the command line or select Tools Menu
Load the Lisp application to ZWCAD
20-11-2008 10:43 . am | View his/her posts only
After I add LISP files to the system using the APPLOAD dialog, the commands are still not usable from the command line.
I added a file named "ZZ.lsp" using the APPLOAD dialog shown above. After adding it, I tried to enter ZZ then ENTER on the command line and received the message "Unable to recognize command. Please try again."
The content of the ZZ.lsp file is a very simple one-step zoom-previous command:
(command "zoom" "p")
(PRINC)
Is there another step required to make LSP files available as commands?
i1patrick2008-11-20 10:45:16
Load the Lisp application to ZWCAD
20-11-2008 10:48 . pm | View his/her posts only
[QUOTE=i1patrick] After I add LISP files to the system using the APPLOAD dialog, the commands are still not usable from the command line.
I added a file named "ZZ.lsp" using the APPLOAD dialog shown above. After adding it, I tried to enter ZZ then ENTER on the command line and received the message "Unable to recognize command. Please try again."
The content of the ZZ.lsp file is a very simple one-step zoom-previous command:
(command "zoom" "p")
(PRINC)
Is there another step required to make LSP files available as commands?
try this code
(defun c:zz ()
(command "zoom" "p")
(princ)
)
Good luck,
mac
I added a file named "ZZ.lsp" using the APPLOAD dialog shown above. After adding it, I tried to enter ZZ then ENTER on the command line and received the message "Unable to recognize command. Please try again."
The content of the ZZ.lsp file is a very simple one-step zoom-previous command:
(command "zoom" "p")
(PRINC)
Is there another step required to make LSP files available as commands?
try this code
(defun c:zz ()
(command "zoom" "p")
(princ)
)
Good luck,
mac
Load the Lisp application to ZWCAD
27-03-2009 04:09 . am | View his/her posts only
ZWCAD menu files can be easily modified to make all custum routines available as drop-downs
Load the Lisp application to ZWCAD
03-04-2009 11:44 . am | View his/her posts only
I suppose so! You could even customize the icon yourself.ffice
ffice" />
ZWCAD supports powerful customizing tool



