Error while recording order

Error while recording order

Darwin33
Collaborator Collaborator
961 Views
2 Replies
Message 1 of 3

Error while recording order

Darwin33
Collaborator
Collaborator

Trying to record an secuence when you execute fillet, in order that the secuence record the option "ra", so I dont need to type it. I get the following error at the end. Note that the secuence recorded works well.

 

Thank youSin-título-1.jpg

0 Likes
Accepted solutions (1)
962 Views
2 Replies
Replies (2)
Message 2 of 3

ВeekeeCZ
Consultant
Consultant
Accepted solution

The people usually use a button-macros shortcut or a LISP for a simple customizations. Not many people use this new macro recording feature, as far as I know -- and I can't help with that.

 

If you have a full AutoCAD, is probably the best option to use a LISP -- it could be simply repeated by right click, enter or spacebar.  In this case, you rrun a lisp by typing RHERE is how to work with a LISP.

 

(defun c:R nil (command "_.FILLET" "_R" PAUSE "_.FILLET") (princ))

Or the macro short cut assigned to button (ribbon, ToolPalette etc.) or keyboard shortcut (eg. CTRL+R).

 

^C^C_.fillet _r \_.fillet

Macro repeats just a last command - but in this case it could be an advantage, because it will NOT prompt for RADIUS on second run. 

HERE is how to make a macro working. 

Message 3 of 3

Darwin33
Collaborator
Collaborator
Thank you very much. Very easy to understand.
0 Likes