Dec 14, 2001 #1 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.
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.
Dec 14, 2001 #2 CarlB Civil/Environmental Joined Jul 11, 2001 Messages 1,194 Location US 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 Upvote 0 Downvote
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