Results 1 to 3 of 3

Thread: Mirror Command Defaults

  1. #1
    Member
    Join Date
    2004-10
    Posts
    8
    Login to Give a bone
    0

    Default Mirror Command Defaults

    Hello All:

    When using the "mirror" command AutoCAD asks you if you want to delete the source objects and the default for that is <n> for no. I want to change that default option to <y> for yes. Any help would be appriciated.

  2. #2
    100 Club lance.81922's Avatar
    Join Date
    2005-01
    Location
    Santa Fe, NM
    Posts
    176
    Login to Give a bone
    0

    Default Re: Mirror Command Defaults

    I don't see how the standard command can be changed, but a simple AutoLISP routine would do the job.

  3. #3
    I could stop if I wanted to scwegner's Avatar
    Join Date
    2004-12
    Location
    Minneapolis, MN
    Posts
    449
    Login to Give a bone
    0

    Default Re: Mirror Command Defaults

    Quote Originally Posted by lance.81922
    I don't see how the standard command can be changed, but a simple AutoLISP routine would do the job.
    To get you started on the lisp, the way to make a default is:

    Code:
     (initget "Yes No")
     (if
     (not
     (setq answer
     (getkword
     "\nDelete source objects? [Yes/No] <Y>: ")))
     (setq answer "yes")
     )
    You can either try to write something that prompts like mirror would then feeds the info to mirror -which may be easier- or replace it entirely -which might look more like the native command. Let me know and I'd be happy to help with either option.

Similar Threads

  1. Mirror While in the Copy Command
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 10
    Last Post: 2012-09-21, 01:52 AM
  2. Use Calculator during Mirror Command
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 0
    Last Post: 2010-09-21, 12:58 PM
  3. Add Mirror to MOCORO Command
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 0
    Last Post: 2007-02-08, 01:37 PM
  4. Mirror command
    By kornackiph in forum Revit Structure - Wish List
    Replies: 0
    Last Post: 2007-02-01, 02:50 PM
  5. Mirror command
    By roland.rancourt in forum Inventor - General
    Replies: 3
    Last Post: 2005-06-05, 07:18 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •