PDA

View Full Version : Script pause


portdor
2007-07-03, 08:32 PM
How do I pause a script file for user input (i.e. point 1, point2 , point three, enter text) then resume ruining the script?

Mike_R
2007-07-03, 10:09 PM
There's a lot of ways of doing that. For a macro, placing a \ where you want to pause would do it. If it's in a lisp routine you would want to use a (command) function, such as (command "\\") or (command pause).

There's also lisp functions with built-in pauses, such as (getpoint).

I would recommend looking at the "Pause for User Input," "Pausing for User Input," and "The getxxx functions" entries in the developer help.