PDA

View Full Version : Question again



alextu
9th Jun 2004, 06:38 pm
I am doing other Lisp. And I get a question again.

When I insert the block "remarkarr" how do I rotate the block after I insert?
(command "-insert" "remarkarr" pt12 dimsc "" [rotate?])

Thank you

David Bethel
9th Jun 2004, 06:41 pm
pause

(command "_.INSERT" block_name point scale scale pause)

For attributed inserts
(while (> (getvar "CMDACTIVE") 0)
(command pause))

or
(command "")

to take the default values

-David

alextu
9th Jun 2004, 07:08 pm
Thank you thank you very much