Elektrik Posted January 25, 2023 Posted January 25, 2023 I want to use bn short command to mirror objects, but I do not want to change the current short cut for the command, so I need another command to mirror objects or a lisp that would run the mirror command. Thanks in advance. Quote
tombu Posted January 25, 2023 Posted January 25, 2023 What do you want it to do differently than the Mirror command? What does "bn" mean? Quote
Elektrik Posted January 25, 2023 Author Posted January 25, 2023 1 hour ago, tombu said: What do you want it to do differently than the Mirror command? What does "bn" mean? I mean the mirror command in AutoCAD, and want to use bn as a short cut command ro run a lisp to mirror objects. Quote
tombu Posted January 25, 2023 Posted January 25, 2023 Our default shortcut for the mirror command is "MI". It's set in the Express Tool ALIASEDIT or 'Command Aliases' in the Ribbon. Sort by AutoCAD Command and scroll down to MIRROR to see what your default shortcut is. 1 Quote
Steven P Posted January 25, 2023 Posted January 25, 2023 (defun c:bn ( / ) (command "mirror" pause pause pause pause) ) ? 2 Quote
marko_ribar Posted January 25, 2023 Posted January 25, 2023 You can simply use (mirror3d) function as a part of (geom3d.arx) extension for lisp... This picture is from documentation... 1 Quote
mhupp Posted January 25, 2023 Posted January 25, 2023 id remove the pauses StevenP (defun C:BN () (command "_.Mirror") ) or duolicate the comand in the cui with BN as the shortcut 1 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.