Hi can anybody give an advice in order to write a LIST into a *.txt file?
(defun c:prueba4()
(setq a (entsel))
(setq b (entget(car a)))
(setq pt1 (cdr(assoc 10 b)))
(setq f(open "ppr.txt" "w"))
(write-line pt1 f)
(close f)
)
With the previous code I got the following message:
"bad argument type: stringp (39.198 28.5504 0.0)"