Continuing a Lisp Routine after User Input

  • Thread starter Thread starter tracihabergham
  • Start date Start date
T

tracihabergham

Hi There,

How can I get my lisp routine to continue after I have received user input. I want to run the ellipse command, get the user to input the position and then continue the lisp.

(command "ellipse" "centre" input input input)

Any help would be appreciates - Thanks Traci
 
Traci,

substitute input with pause, ie

(command "ellipse" "centre" pause pause pause)
(alert "routine still running")

HTH

Steve

tracihabergham said:
Hi There,

How can I get my lisp routine to continue after I have received user
input. I want to run the ellipse command, get the user to input the
position and then continue the lisp.
 
Back
Top