question for the AutoCAD Masters:
Is there way to modify an AutoCAD command? I know I can write my own and as well as LISPs, but I'm wondering if there's a way to edit an existing command. In particular here is what I want to do: I would like to add MIRROR to the list of commands in MOCORO. I find myself doing a lot of repetitive copying and mirroring, so having the command in there would be handy, so i don't need to exit the command to perform MIRROR operations.
thoughts?
question for the AutoCAD Masters:
Is there way to modify an AutoCAD command? I know I can write my own and as well as LISPs, but I'm wondering if there's a way to edit an existing command. In particular here is what I want to do: I would like to add MIRROR to the list of commands in MOCORO. I find myself doing a lot of repetitive copying and mirroring, so having the command in there would be handy, so i don't need to exit the command to perform MIRROR operations.
thoughts?
Hi,
>> but I'm wondering if there's a way to edit an existing command
Not really edit an existing command, that is not possible.
The chance you have is to first undefine an existing command and create your own app that replaces this command.
So you can create your own _MIRROR command that behaves differently to the standard AutoCAD command. But you need to know that if a user starts the command with a "." (point) before the command name (like _.MIRROR) he starts the AutoCAD internal mirror command, ignoring your replacement.
- alfred -
Hi,
>> but I'm wondering if there's a way to edit an existing command
Not really edit an existing command, that is not possible.
The chance you have is to first undefine an existing command and create your own app that replaces this command.
So you can create your own _MIRROR command that behaves differently to the standard AutoCAD command. But you need to know that if a user starts the command with a "." (point) before the command name (like _.MIRROR) he starts the AutoCAD internal mirror command, ignoring your replacement.
- alfred -
Scot-65
A gift of extraordinary Common Sense does not require an Acronym Suffix to be added to my given name.
Scot-65
A gift of extraordinary Common Sense does not require an Acronym Suffix to be added to my given name.
Can't find what you're looking for? Ask the community or share your knowledge.