Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am very new to creating AutoLISP routines and trying to figure them out. From what I've picked up and learned so far, I know I can give an instruction that shows up in the command bar when using the getpoint function when I write it like this:
(setq pt1 (getpoint "Select starting point:"))
With that "Select starting point:" displays in the command bar for the user.
However, I can't seem to do the same with ssget. If I try something similar (subbing getpoint for ssget in the example above):
(setq ss1 (ssget "Select the specific objects:"))
AutoCAD gives me "bad ssget mode string".
Is there a way to display instructions for a user when using ssget?
TIA for any help.
Solved! Go to Solution.