PDA

View Full Version : Not pausing for input


tsigler
2009-07-17, 04:40 PM
Hi All,

Can anyone tell me why my program doesn't pause after ssget for input in this code?

(setq blk (ssget "x" '((0."INSERT")(2."IOM"))))
(setq blkname (ssname blk 0))

I know I must be doing something wrong but I can't figure out what.

TIA

Opie
2009-07-17, 04:53 PM
Because you told it not to with "x" option within your ssget call. It selects everything in the drawing database that matches the included filter.

tsigler
2009-07-17, 05:38 PM
Thanks, Opie

I figured that out after I posted.

TS