Jump to content

Search the Community

Showing results for tags 'view ports'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • CADTutor
    • News, Announcements & FAQ
    • Feedback
  • AutoCAD
    • AutoCAD Beginners' Area
    • AutoCAD 2D Drafting, Object Properties & Interface
    • AutoCAD Drawing Management & Output
    • AutoCAD 3D Modelling & Rendering
    • AutoCAD Vertical Products
    • AutoCAD LT
    • CAD Management
    • AutoCAD Bugs, Error Messages & Quirks
    • AutoCAD General
    • AutoCAD Blogs
  • AutoCAD Customization
    • The CUI, Hatches, Linetypes, Scripts & Macros
    • AutoLISP, Visual LISP & DCL
    • .NET, ObjectARX & VBA
    • Application Beta Testing
    • Application Archive
  • Other Autodesk Products
    • Autodesk 3ds Max
    • Autodesk Revit
    • Autodesk Inventor
    • Autodesk Software General
  • Other CAD Products
    • BricsCAD
    • SketchUp
    • Rhino
    • SolidWorks
    • MicroStation
    • Design Software
    • Catch All
  • Resources
    • Tutorials & Tips'n'Tricks
    • AutoCAD Museum
    • Blocks, Images, Models & Materials
    • Useful Links
  • Community
    • Introduce Yourself
    • Showcase
    • Work In Progress
    • Jobs & Training
    • Chat
    • Competitions

Categories

  • Programs and Scripts
  • 2D AutoCAD Blocks
  • 3D AutoCAD Blocks
  • Images
    • Backgrounds

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 5 results

  1. Hi, I have a drawing that incorporates a number of Multileaders that consist of a rectangle with some text inside and a background mask. This drawing is then Xref'd into another drawing.The issue I'm having is that in the main drawing I have frozen some of these. However, the background mask is still showing on the plotted drawings. I've tried to "Select All" to see if something shows up in the drawing, but to no avail. Any ideas? Thanks.
  2. I have a drawing with multiple Viewports using different Layer States. How do I know which Layer State is being used in each Viewport.
  3. Need assistance with the code below, using it to toggle my viewports (open and close). However, after a few times of using it throws up the message "exceeded maximum number of selections" and doesn't do nothing resulting in me having to close down and restart AutoCAD. Not sure if it this routine which is doing it but when I select a grip and try to move it grip turns red and stays in same position. ; Toggle the "Display Locked" Variable of selected viewports based on the first view port selected (defun c:vplocktoggle (/ Ename ss ) (princ "\nSelect Viewport...") ;Get selection set, allow only viewports (setq ss (ssget '((0 . "viewport")))) (if (IsVpLocked (setq Ename (ssname ss 0))) ;Viewport is locked. Run Unlock commands (progn (princ "\nViewport selected is Locked") ;Unlock viewport (command "mview" "Lock" "OFF" ss "") ;Change viewport color to red to indicate it is Unlocked (command ".change" ss "" "p" "c" "1" "") (princ "\nViewport is now Unlocked") ) ;Viewport is unlocked. Run Lock commands (progn (princ "\nViewport selected is Unlocked") ;Lock viewport (command "mview" "Lock" "ON" ss "") ;Change viewport color to ByLayer to indicate it is Locked (command ".change" ss "" "p" "c" "bylayer" "") (princ "\nViewport is now Locked") ) ) (princ) ) ; Return: T if locked, Nil otherwise (defun IsVpLocked (Ename) (eq 16384 (logand 16384 (cdr (assoc 90 (entget Ename))))) )
  4. I've set a viewport's shade plot to "legacy hidden" but after I save it automatically returns to "as displayed". The VP shade plot settings will not hold. Funny thing is... If i flip to the MS tab and save, then back to the PS tab, the VP shade plots are retained at "legacy hidden". But anytime I save while on a layout tab the VPs all return to "as displayed". Has anyone encountered this before or have any advice on fixing it? Thanks in advance! David System - AutoCAD Mechanical 2014
  5. I am a machine designer and I am switching from everything done in model space to using view port/paper space for my annotations and finalizing my drawings. Because my models have many parts I end up with many paper space layouts. Is there a way to search the paper space (view port) tabs instead of wondering through the many tabs? My current project file has over 50 paper space/view port tabs.
×
×
  • Create New...