Alias to reload all XRefs?

Discussion in 'AutoCAD' started by Scott Townsend, Feb 23, 2005.

  1. How can I write a scrip/alias command to reload all XRefs in a Drawing?

    I know I can type:
    -xref
    reload
    *


    Thanks,
    Scott<-
     
    Scott Townsend, Feb 23, 2005
    #1
  2. Scott Townsend

    Paul Turvill Guest

    Put that command sequence in a script file.

    -or-

    Define a custom buton with
    ^C^C-xref;reload;*;

    -or-

    Use a bit of LISP:
    (defun C:XR ( )
    (command "_.-xref" "reload" "*")
    )

    For help with these and other options, check out the Customization Guide
    section of HELP.
    ___
     
    Paul Turvill, Feb 23, 2005
    #2
  3. Perfect! Thank you!
    Scott<-

     
    Scott Townsend, Feb 23, 2005
    #3
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.