See the top rated post in this thread. Click here

Results 1 to 3 of 3

Thread: View Manager

  1. #1
    Member
    Join Date
    2013-09
    Location
    Between two points
    Posts
    28
    Login to Give a bone
    0

    Default View Manager

    Hello,
    I was wondering if there is a LISP out there that allows me to "Update Layers" in "View Manager" all at once.
    I would like to be able to select all my model views at once and update layers.
    "View Manager" allows only one view at a time to update.
    In my case all my layers are always on, the problem arrises when I create a new layer, I need to update all my model views to include the new layer.
    As you can see from the attachment, I need to do this 33 times. Time consuming
    Thank You
    Joe
    Attached Images Attached Images

  2. #2
    Administrator Opie's Avatar
    Join Date
    2002-01
    Location
    jUSt Here (a lot)
    Posts
    9,100
    Login to Give a bone
    1

    Default Re: View Manager

    You could go through and change the Layer Snapshot to No.

    Or you could paste this code to your command line.
    Code:
    (vlax-for n (vla-get-views (vla-get-activedocument (vlax-get-acad-object)))
      (vla-put-layerstate n "")
    )
    If you have a technical question, please find the appropriate forum and ask it there.
    You will get a quicker response from your fellow AUGI members than if you sent it to me via a PM or email.
    jUSt

  3. #3
    Member
    Join Date
    2013-09
    Location
    Between two points
    Posts
    28
    Login to Give a bone
    0

    Default Re: View Manager

    Thanks a million Opie.
    I rarely use this command, I don't know the in's and outs of it.
    This what happens, when you use AutoCAD for over 32 years, you tend to not see what's in front of you.
    Your lisp routine is great too.
    Again, Thank You

Similar Threads

  1. Replies: 0
    Last Post: 2009-02-21, 11:32 AM
  2. Cad Manager / Cad Manager Assistant
    By dberg.47064 in forum CAD Management - General
    Replies: 4
    Last Post: 2008-08-21, 02:28 PM
  3. Undo and Redo in Style Manager and Disply Manager
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 0
    Last Post: 2008-01-10, 05:24 PM
  4. Construction Note Manager with Sheet Set Manager
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 0
    Last Post: 2006-02-08, 01:22 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
  •