vernonlee 发表于 2022-7-5 22:36:17

Can we put key commands (eg. c

Can we put key commands into lisp, to activate it, for it to work?
 
ctrl (control key)
alt (alternate Key)
shift (shift key)
 
If possible, how would the code for this key commands look like in the lisp?
 
Thanks

MSasu 发表于 2022-7-5 22:54:17

You cannot define such shortcuts directly by AutoLISP code, but you may solve this by editing the menu definition (check CUI command) and/or the acad.pgp file.

BIGAL 发表于 2022-7-5 23:06:30

If your trying to do a Ctrl+ action you should be able to replicate it in lisp what is it your trying to do ?

vernonlee 发表于 2022-7-5 23:28:41

 
basically to activiate a lisp command.
 
eg.
 
 
Pressing & holding "ctrl" key + "test"
 
Not sure what to write in the command

vernonlee 发表于 2022-7-5 23:41:12

 
Can you elaborate?
页: [1]
查看完整版本: Can we put key commands (eg. c