@GeeHaa wrote:
.... Is there a way to get the command prompt keywords to Highlight with AutoLisp? ....
If you construct the prompt with the options in square brackets with initial letters matching a preceding (initget) function's options, and with forward-slash separators, they will do that as in regular AutoCAD commands. An example, from my MakeMore.lsp routine, when the selected object you want to Make More of is a LWPolyline, offering options for the different commands that can make them, i.e. that might have been what made the one you selected:
(initget "PLine Rectangle POlygon Donut Cloud Boundary Sketch")
(setq
S2
(getkword
(strcat
"\nPolyline Type [PLine/Rectangle/POlygon/Donut/Cloud/Boundary/Sketch] <"
S1
">: "
); strcat
); getkword
S2 (cond (S2) (S1)); use User entry, or default for Enter
); setq
Kent Cooper, AIA