DCL or LISP?

DCL or LISP?

Anonymous
Not applicable
395 Views
1 Reply
Message 1 of 2

DCL or LISP?

Anonymous
Not applicable

I'm creating a lisp for creating instances of, and defining attributes of a dynamic block. I'd like the work flow to include a drop down menu to pick from different predefined attributes similar to when you create, say, a circle and press the down key to bring up a list of different attributes to change. Is this done in lisp, or does it need to be built as a dcl first?

0 Likes
396 Views
1 Reply
Reply (1)
Message 2 of 2

ВeekeeCZ
Consultant
Consultant

With dynamic input on its quite easy...

 

(initget "First Second Third")
(getkword "\nSpecify an attribute name [First/Second/Third] <First>: ")
0 Likes