pline from autolisp?
pline from autolisp?
(OP)
hi,
how can i call pline from autolisp and wait for the user to finish with the command before continuing?
any help would be appreciated.
nat.
how can i call pline from autolisp and wait for the user to finish with the command before continuing?
any help would be appreciated.
nat.





RE: pline from autolisp?
(command "._pline")
(while (= (logand (getvar "CMDACTIVE" ) 1) 1)
(command pause)
)
This bascically continues to issue pauses until user is done with the command.
This should do it, let me know if not!
Regards,
Carl