Results 1 to 10 of 10

Thread: Hide Layout Tabs

  1. #1
    Certifiable AUGI Addict robert.1.hall72202's Avatar
    Join Date
    2004-07
    Location
    Detroit Michigan
    Posts
    2,508
    Login to Give a bone
    0

    Default Hide Layout Tabs

    Is there a quick way to unhide layout tabs in 08?

    I thought there used to be a small icon on the status bar.
    I do not see that in 08. I have to go into the options and turn
    on the model tabs.

    Better way?

  2. #2
    100 Club
    Join Date
    2007-05
    Location
    Chicago, Illinois
    Posts
    194
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    You can right click on the small Paper Space / Model buttons on the status bar on the bottom and select "Display Layout and Model Tabs".

  3. #3
    Certifiable AUGI Addict robert.1.hall72202's Avatar
    Join Date
    2004-07
    Location
    Detroit Michigan
    Posts
    2,508
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    Yes, if they were visible. I have yet to figure out how to get the
    buttons to appear.

  4. #4
    All AUGI, all the time Richard.Kent's Avatar
    Join Date
    2001-01
    Location
    Albuquerque, NM, USA
    Posts
    622
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    Hi Robert,

    Do you have space to the right of LWT in the status bar in order for the two icons to show? Also, in the autodesk forums, lisp customization, some one just posted some routines for doing what you are needing. Look for, um, oh never mind, I will go find it now......

    ok, here you go, I think this will help you.

    allows to
    switch between show/hide display tabs
    Hth

    ~'J'~


    ;==========================================;
    (defun C:ton()
    ;; Display the Model and layout tabs.
    (vl-load-com)
    (vla-put-displaylayouttabs
    (vla-get-display
    (vla-get-preferences
    (vlax-get-acad-object)))
    :vlax-true)
    )
    ;==========================================;
    (defun C:tof()
    ;; Do not display the Model and layout tabs.
    (vl-load-com)
    (vla-put-displaylayouttabs
    (vla-get-display
    (vla-get-preferences
    (vlax-get-acad-object)))
    :vlax-false)
    )
    ;==========================================;

  5. #5
    100 Club
    Join Date
    2007-05
    Location
    Chicago, Illinois
    Posts
    194
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    If they are not visible either as tabs or as buttons then you can click the tiny arrow at the extreme bottom right of your screen and click "Layout/Model" to make the buttons appear on your status bar. Then you can right click in the vicinity of those buttons and click on "Display Layout and Model Tabs" to show them as tabs at the bottom edge of your drawing.

  6. #6
    Certifiable AUGI Addict robert.1.hall72202's Avatar
    Join Date
    2004-07
    Location
    Detroit Michigan
    Posts
    2,508
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    Thanks, that was it..............I do not use layout tabs so I was unaware that setting existed.
    I do need to have layouts visible for files that I other designers have sent me.

  7. #7
    Active Member amy.stuart's Avatar
    Join Date
    2004-05
    Location
    nebraska
    Posts
    88
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    To take this thread a little further, is there a way to delete this option from even existing. Many users here are getting frustrated with it and wanted to know if we can delete that as an option all together?

  8. #8
    Certifiable AUGI Addict ccowgill's Avatar
    Join Date
    2004-08
    Location
    Iron Station, NC
    Posts
    3,198
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    Quote Originally Posted by amy.stuart View Post
    To take this thread a little further, is there a way to delete this option from even existing. Many users here are getting frustrated with it and wanted to know if we can delete that as an option all together?
    could you clarify? I would think it would be a global setting (applies to all dwgs) just tell the users not to hide them, and the problem goes away. or am I not understanding and they are just dissapearing on their own?

  9. #9
    Certifiable AUGI Addict robert.1.hall72202's Avatar
    Join Date
    2004-07
    Location
    Detroit Michigan
    Posts
    2,508
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    I think ensuring that layout tabs are always visible is the best solution.
    I am only in trouble when I am in a drawing and am unaware that layouts exist.

  10. #10
    Active Member amy.stuart's Avatar
    Join Date
    2004-05
    Location
    nebraska
    Posts
    88
    Login to Give a bone
    0

    Default Re: Hide Layout Tabs

    Sorry I didn't explain that very well.

    Okay we have a user that does NOT like the "hide layout tabs" option all together. So he wants to know if I can find a way to delete that option on his right click menu. He is used to "plot" or "Publish selected layouts" being the option at the bottom of his right click. So he is always in a hurry and accidently clicks "hide layout tabs". Then gets frustrated. So he believes his life would be better if that options just wasn't on his right click menu.

Similar Threads

  1. Layout tabs names change when layout renamed in SSM
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 2
    Last Post: 2013-01-20, 05:07 AM
  2. 2011: Variable for Hide Layout/Model tabs
    By SunYog in forum AutoCAD General
    Replies: 8
    Last Post: 2011-03-08, 09:59 PM
  3. Hide Layout/Model tabs in every drawing
    By robert.1.hall72202 in forum AutoCAD General
    Replies: 5
    Last Post: 2007-06-19, 02:11 PM
  4. Replies: 2
    Last Post: 2006-07-27, 04:39 AM
  5. Publish layout tabs and layout tab names to PDF
    By dfuehrer in forum AutoCAD Plotting
    Replies: 9
    Last Post: 2005-11-09, 02:49 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
  •