Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

pline from autolisp?

Status
Not open for further replies.

greenwire

Computer
Joined
Sep 18, 2001
Messages
10
Location
GB
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.
 
Here's the typical syntax for this:

(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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top