- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone! 👋
I have a lisp routine called "CD", I use this routine to insert multiple blocks. When I call it the "CD" routine in autoCAD, it asks me to enter a text, for example "AB", which corresponds to a certain block, finally it asks me the point where I want to insert the block.
I need to call the "CD" routine from another lisp routine.
I've been looking on the internet and with "COMMAND", it's done.
I want to insert several blocks at the same time, without having to call the lisp routine "CD" again and write the text that corresponds to the other block.
(command "._CD" "AB" ""); Block 1
(command "._CD" "AC" ""); Block 2
(command "._CD" "AD" ""); Block 3But it doesn't work for me, I can only insert the first block.
Could you tell me or explain how I could do this.
Thank you very much for reading my message.
Greetings.
Solved! Go to Solution.