Message 1 of 31
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
I'm writing LISP like this below
(defun c:mk ()
(command "_3dpoly" "100,100,0" "250,250,0" "250,250,750" "")
(princ)
)
I want to call another lisp command ATTACHTAG, I wrote like below
(defun c:mk ()
(command "_3dpoly" "100,100,0" "250,250,0" "250,250,750" "")
(c:ATTACHTAG)
(princ)
)
Command executes but it asks to select object (which commands purpose)
command: ATTACHTAG
--> Select object: [I have to select the 3D polyline]
--> Enter TAG name: [I have to enter name for it]
How can I write further above steps in my LISP?
pls help
Solved! Go to Solution.