Message 1 of 13
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Command "TEXT" typed in autocad command line window, first is asking Justification, Insertion point , height and rotation , and then , in a loop terminating using ESC , asks with prompt "Enter text:" the text values, creating text objects , the next bellow the previous.
I want just to give the insertion point.
So I wrote the following
(defun c:MyTextCommand () ;;
(if
(setq pt (getpoint "\nSpecify point for first text instance: "))
(
(command "TEXT" "J" "MC" pt 1.00 0.00 )
)
)
)
)
But now there's not loop ex by prompting "Enter text:" but returns to command prompt.
How should this work as when typed "TEXT" command?
Thanks,
Gery,
Solved! Go to Solution.