Results 1 to 7 of 7

Thread: Changing between layers

  1. #1
    Woo! Hoo! my 1st post
    Join Date
    2004-08
    Posts
    1

    Default Changing between layers

    Is there a quicker way while you are in the middle of drawing to change layers? For instance, if you are drawign a wall, and want to pop in a door, I now go up to layer management, scroll down and pick the new layer and set current.

  2. #2
    Administrator Mike.Perry's Avatar
    Join Date
    2001-03
    Posts
    13,499

    Default Re: Changing between layers

    Hi

    Take a look at the following command (AutoCAD Online Help File [F1]) -

    ._Ai_Molc

    Have a good one, Mike

  3. #3
    Certified AUGI Addict rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Houston
    Posts
    7,519

    Default Re: Changing between layers

    Quote Originally Posted by allyd
    Is there a quicker way while you are in the middle of drawing to change layers? For instance, if you are drawign a wall, and want to pop in a door, I now go up to layer management, scroll down and pick the new layer and set current.
    With Tool Palettes, you can assign layers to frequently constructed objects and commands. So you can create a palette button to draw walls on the WALL layers and doors on the DOOR layer.

    More complicated scenarios could be handled with lisp code.

  4. #4
    All AUGI, all the time CADDmanVA's Avatar
    Join Date
    2006-12
    Location
    New Orleans, LA
    Posts
    881

    Default Re: Changing between layers

    I use layer filters quite a bit. If you're using 2008, you can have a pull down to switch layer filters on the fly on the Dashboard.
    I loved the NCS so much, I joined the committee!

    "Truth suffers from too much analysis"
    I remember AutoCAD R10

    When will Autodesk port AutoCAD to Linux?

  5. #5
    100 Club
    Join Date
    2004-07
    Location
    Baton Rouge, Louisiana
    Posts
    169

    Default Re: Changing between layers

    you can always create custom commands that allow you to switch between layers with 1 or 2 keystrokes see example


    (defun c:1 ()
    (command "layer" "set" "epower" "")
    (prompt "nttt***Layer EPOWER is now Current.n")
    (command "insert")
    (princ)
    )


    this command also imitate the insert command for inserting blocks
    start a lisp file the will load automatically when autocad starts, or use appload.

    good luck

  6. #6
    Forum Manager, Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    4,776

    Default Re: Changing between layers

    Quote Originally Posted by rkmcswain
    With Tool Palettes, you can assign layers to frequently constructed objects and commands. So you can create a palette button to draw walls on the WALL layers and doors on the DOOR layer.

    More complicated scenarios could be handled with lisp code.
    Since you specifially mentioned architectual objects, ACA automatically adds walls, doors, windows, etc. on their respective layers.
    C:> ED WORKING....

  7. #7
    Certified AUGI Addict rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Houston
    Posts
    7,519

    Wink Re: Changing between layers

    Quote Originally Posted by Ed Jobe
    Since you specifially mentioned architectual objects, ACA automatically adds walls, doors, windows, etc. on their respective layers.
    Actually, the OP mentioned them before I did.

    Quote Originally Posted by allyd
    ...if you are drawign a wall, and want to pop in a door...

Similar Threads

  1. 2010: Changing layers
    By jimmy.long in forum Inventor - General
    Replies: 4
    Last Post: 2012-02-03, 12:59 PM
  2. Layers are changing in the Slection Tree
    By anthony.foster-davis in forum NavisWorks - General
    Replies: 0
    Last Post: 2009-06-15, 10:13 PM
  3. Changing Layers Plotstyle via Lisp
    By petersenjm in forum AutoLISP
    Replies: 3
    Last Post: 2009-06-03, 07:59 PM
  4. Layers changing on their own
    By parweld in forum AutoCAD General
    Replies: 8
    Last Post: 2008-08-25, 11:43 AM
  5. Exporting to DWG - Changing Layers
    By neb1998 in forum Revit Architecture - General
    Replies: 6
    Last Post: 2005-08-09, 10:58 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
  •