
www.Usenet.com
| <-- __Chronological__ --> | <-- __Thread__ --> |
On Wed, 10 Sep 2003 19:45:02 GMT, [EMAIL PROTECTED] (John Callaway)
wrote:
I did what you said but got the following error when I tried to load
the lisp file in AutoCad R14
"Loading D:\Lisp\writco.lsp ...
Error: malformed list*Cancel*".
Below is file, maybe you can tell me where I went wrong.
(defun C:writco( / x tt)
(command "osmode" 33)
(setq x (getpoint "\nPick point : "))
(setq tt (strcat (rtos (car x)) " " (rtos (cadr x)) " " (rtos
(caddr>x))))
(setq x (getpoint "\nText where ? : "))
(command "_text" x "" "" tt )
(terpri)
JPC
>In R14 & R2000i how do you display x y corodinates of specific points
>on the drawing itself?
>
> JPC
| <-- __Chronological__ --> | <-- __Thread__ --> |