<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Betreff: automatically setup not printable layers to not be shown in viewports. in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819940#M14786</link>
    <description>&lt;P&gt;no problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For usual you have a .lsp (or /.fas./vlx) file with code inside, so you can drag&amp;amp;droop the file into your drawing or&lt;/P&gt;
&lt;P&gt;load it by command APPLOAD (often you will see informations about loaded function names in commandline/Textscreen [F2]).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the case here, you have the (Lisp)sourcecode only, so you have to create a .lsp file yourself:&lt;/P&gt;
&lt;P&gt;Open EDITOR, copy&amp;amp;paste the code into, save as &amp;lt;Name of your choice, but often the part after "defun c:" is senseful &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; &amp;gt; incl. the file extension .LSP&lt;/P&gt;
&lt;P&gt;In this case here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Save it to your new AutoCAD Custom Tools folder wherever\Tools\&lt;STRONG&gt;AllNoPlotLayers2VPFRZ.lsp&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Now, you can load this file by drag&amp;amp;drop into your drawing or by APPLOAD command.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Note: In APPLOAD dialog, you can set up Acad to load this file into every file by open that file.&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jun 2024 11:21:22 GMT</pubDate>
    <dc:creator>cadffm</dc:creator>
    <dc:date>2024-06-05T11:21:22Z</dc:date>
    <item>
      <title>automatically setup not printable layers to not be shown in viewports.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819787#M14783</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering if there is an automatic way to setup the non printable layers to not be shown in the viewports.&lt;/P&gt;&lt;P&gt;I usually simply freeze them in the viewport, but for this specific project it is boing time consuming.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 09:59:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819787#M14783</guid>
      <dc:creator>leticia.campanelli</dc:creator>
      <dc:date>2024-06-05T09:59:04Z</dc:date>
    </item>
    <item>
      <title>Betreff: automatically setup not printable layers to not be shown in viewports.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819843#M14784</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;not ootb, but with few lines code and the native command VPLAYER, no problem:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:AllNoPlotLayers2VPFRZ (/ a b)
  (setq b "")
  (while (setq a (tblnext "LAYER" (not a)))
    (if (zerop(cdr(assoc 290 (entget (tblobjname "LAYER" (cdr(assoc 2 a)))))))
        (setq b (strcat (cdr(assoc 2 (entget (tblobjname "LAYER" (cdr(assoc 2 a))))))"," b))
    )
  )
  (command "_.VPLAYER" "_fr" b "_all" "")
  (princ)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 05 Jun 2024 10:27:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819843#M14784</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2024-06-05T10:27:36Z</dc:date>
    </item>
    <item>
      <title>Betreff: automatically setup not printable layers to not be shown in viewports.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819885#M14785</link>
      <description>&lt;P&gt;feeling stupid.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much, but I have no idea how to use this code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it easy enough to explain it here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 10:57:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819885#M14785</guid>
      <dc:creator>leticia.campanelli</dc:creator>
      <dc:date>2024-06-05T10:57:56Z</dc:date>
    </item>
    <item>
      <title>Betreff: automatically setup not printable layers to not be shown in viewports.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819940#M14786</link>
      <description>&lt;P&gt;no problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For usual you have a .lsp (or /.fas./vlx) file with code inside, so you can drag&amp;amp;droop the file into your drawing or&lt;/P&gt;
&lt;P&gt;load it by command APPLOAD (often you will see informations about loaded function names in commandline/Textscreen [F2]).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the case here, you have the (Lisp)sourcecode only, so you have to create a .lsp file yourself:&lt;/P&gt;
&lt;P&gt;Open EDITOR, copy&amp;amp;paste the code into, save as &amp;lt;Name of your choice, but often the part after "defun c:" is senseful &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; &amp;gt; incl. the file extension .LSP&lt;/P&gt;
&lt;P&gt;In this case here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Save it to your new AutoCAD Custom Tools folder wherever\Tools\&lt;STRONG&gt;AllNoPlotLayers2VPFRZ.lsp&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Now, you can load this file by drag&amp;amp;drop into your drawing or by APPLOAD command.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Note: In APPLOAD dialog, you can set up Acad to load this file into every file by open that file.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 11:21:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819940#M14786</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2024-06-05T11:21:22Z</dc:date>
    </item>
    <item>
      <title>Betreff: automatically setup not printable layers to not be shown in viewports.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819985#M14787</link>
      <description>&lt;P&gt;&lt;A href="https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-3B8EDFF1-A130-434F-B615-7F2EC04322EE" target="_blank" rel="noopener"&gt;AutoCAD help page [F1]&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-3B8EDFF1-A130-434F-B615-7F2EC04322EE" target="_blank" rel="noopener"&gt;https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-3B8EDFF1-A130-434F-B615-7F2EC04322EE&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 11:49:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12819985#M14787</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2024-06-05T11:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: automatically setup not printable layers to not be shown in viewports.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12820023#M14788</link>
      <description>&lt;P&gt;thank you!!!!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 12:10:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/automatically-setup-not-printable-layers-to-not-be-shown-in/m-p/12820023#M14788</guid>
      <dc:creator>leticia.campanelli</dc:creator>
      <dc:date>2024-06-05T12:10:22Z</dc:date>
    </item>
  </channel>
</rss>

