Gio_S
Guest
Good morning to all,
I use the lisp ragguppando various routines distributed on various file lisp according to a principle of affinity.
Each file lisp is called by a custom entry in the main menu, which opens its submenu, to make me choose the routine I need.
in this way (example file lisp that groups together various features):
Now, I was wondering, is there a way to show up in the submenu, alongside the name of the routine, something more explanatory about its function?
For example, instead of reading in the submenu simply hprint find me something like this:
"hprint"
Where can I put the explanation? I have so many functionalities that sometimes, if it is not often used, I forget the peculiarities...
I would not like to rewrite all my menus in dcl ... that I only use for important functions. . .
Thank you!
g.
I use the lisp ragguppando various routines distributed on various file lisp according to a principle of affinity.
Each file lisp is called by a custom entry in the main menu, which opens its submenu, to make me choose the routine I need.
in this way (example file lisp that groups together various features):
Code:
(defun powpoly(key)
(if(null key)
(progn
(initget "hprint mprint upline rapidograph ...... etc etc)
(prompt "[Command] autolisp")
(setq key (getkword "\n<hprint/mprint/upline/rapidograph/... etc.: "))
)
)
(cond
((= key "hprint")
((= key "mprint")
((= key "rapidograph")(china))
etc etc.
For example, instead of reading in the submenu simply hprint find me something like this:
"hprint"
Where can I put the explanation? I have so many functionalities that sometimes, if it is not often used, I forget the peculiarities...
I would not like to rewrite all my menus in dcl ... that I only use for important functions. . .
Thank you!
g.