<?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 Re: Is there a way to change a setting in multiple layouts at the same time? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595097#M114240</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Unless you're on LT, you can use this LISP. If you don't know how read&amp;nbsp;&lt;A href="http://www.lee-mac.com/runlisp.html" target="_blank" rel="noopener"&gt;THIS&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vl-load-com)&lt;BR /&gt;
(defun c:VPAllCustomscale ( / c s i)
  (if (and (setq c (getreal "\nCustom scale for all VPs: "))
	   &lt;STRONG&gt;(setq s (ssget "_X" '((0 . "VIEWPORT")))))&lt;/STRONG&gt;
    (repeat (setq i (sslength s))
      (vl-catch-all-apply 'setpropertyvalue (list (ssname s (setq i (1- i))) "CustomScale" c))))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I am pretty sure "each viewport" from user view doesn't mean&amp;nbsp; "all viewports" technically&lt;/P&gt;
&lt;P&gt;and I recommend to edit the user defined viewports only.&lt;/P&gt;
&lt;P&gt;(setq s (ssget "_X" '((0 . "VIEWPORT")(-4 . "&amp;gt;")(69 . 1))))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;{edited}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3420156"&gt;@kilama1331&lt;/a&gt; for &lt;U&gt;other&lt;/U&gt; properties than the scale you can go this way:&lt;/P&gt;
&lt;P&gt;Command: (sssetfirst nil (ssget "_X" '((0 . "VIEWPORT")(-4 . "&amp;gt;")(69 . 1))))&lt;/P&gt;
&lt;P&gt;and you can edit properties by PropertiesPalette [CTRL+1]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 03 Dec 2022 10:24:01 GMT</pubDate>
    <dc:creator>cadffm</dc:creator>
    <dc:date>2022-12-03T10:24:01Z</dc:date>
    <item>
      <title>Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/9301339#M114235</link>
      <description>&lt;P&gt;I'm trying to print a bunch of drawings as seperate PDFs and I want to change the plot style/printer of each layout to match. I don't want to go into the page setup manager to change each one seperately as that would take some time so I wanted to know; is there a way to change a setting across all layouts in a drawing?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 16:30:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/9301339#M114235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-06T16:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/9301386#M114236</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;try from &lt;STRONG&gt;Publish&lt;/STRONG&gt; command to add your drawings layouts then :&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;select all of your drawing in the dialog .&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;from the first one in the list (&amp;nbsp; which you modify&amp;nbsp;&lt;SPAN&gt;plot style/printer )&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;from pagesetup import your modified pagesetup .&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;Now your modified pagesetup will come&amp;nbsp;over all the other selected drawings .&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;make sure that all of your drawings have the same plot settings .&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;be patient and try it .&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 16:50:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/9301386#M114236</guid>
      <dc:creator>imadHabash</dc:creator>
      <dc:date>2020-02-06T16:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/9301489#M114237</link>
      <description>&lt;P&gt;Attached is a LISP routine that will do what you are looking for&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 17:31:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/9301489#M114237</guid>
      <dc:creator>murray-clack</dc:creator>
      <dc:date>2020-02-06T17:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595058#M114238</link>
      <description>Hello&lt;BR /&gt;I have multiple layouts with single viewports each that i imported from another drawing. Is there a way i can automatically change all their scales?</description>
      <pubDate>Sat, 03 Dec 2022 09:35:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595058#M114238</guid>
      <dc:creator>kilama1331</dc:creator>
      <dc:date>2022-12-03T09:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595083#M114239</link>
      <description>&lt;P&gt;Unless you're on LT, you can use this LISP. If you don't know how read&amp;nbsp;&lt;A href="http://www.lee-mac.com/runlisp.html" target="_blank" rel="noopener"&gt;THIS&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vl-load-com)&lt;BR /&gt;
(defun c:VPAllCustomscale ( / c s i)
  (if (and (setq c (getreal "\nCustom scale for all VPs: "))
	   (setq s (ssget "_X" '((0 . "VIEWPORT")(-4 . "&amp;gt;")(69 . 1)))))
    (repeat (setq i (sslength s))
      (vl-catch-all-apply 'setpropertyvalue (list (ssname s (setq i (1- i))) "CustomScale" c))))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2022 10:22:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595083#M114239</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-12-03T10:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595097#M114240</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Unless you're on LT, you can use this LISP. If you don't know how read&amp;nbsp;&lt;A href="http://www.lee-mac.com/runlisp.html" target="_blank" rel="noopener"&gt;THIS&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vl-load-com)&lt;BR /&gt;
(defun c:VPAllCustomscale ( / c s i)
  (if (and (setq c (getreal "\nCustom scale for all VPs: "))
	   &lt;STRONG&gt;(setq s (ssget "_X" '((0 . "VIEWPORT")))))&lt;/STRONG&gt;
    (repeat (setq i (sslength s))
      (vl-catch-all-apply 'setpropertyvalue (list (ssname s (setq i (1- i))) "CustomScale" c))))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I am pretty sure "each viewport" from user view doesn't mean&amp;nbsp; "all viewports" technically&lt;/P&gt;
&lt;P&gt;and I recommend to edit the user defined viewports only.&lt;/P&gt;
&lt;P&gt;(setq s (ssget "_X" '((0 . "VIEWPORT")(-4 . "&amp;gt;")(69 . 1))))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;{edited}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3420156"&gt;@kilama1331&lt;/a&gt; for &lt;U&gt;other&lt;/U&gt; properties than the scale you can go this way:&lt;/P&gt;
&lt;P&gt;Command: (sssetfirst nil (ssget "_X" '((0 . "VIEWPORT")(-4 . "&amp;gt;")(69 . 1))))&lt;/P&gt;
&lt;P&gt;and you can edit properties by PropertiesPalette [CTRL+1]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2022 10:24:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595097#M114240</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2022-12-03T10:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595118#M114241</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/71745"&gt;@cadffm&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;{edited}&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3420156"&gt;@kilama1331&lt;/a&gt; for &lt;U&gt;other&lt;/U&gt; properties than the scale you can go this way:&lt;/P&gt;
&lt;P&gt;Command: (sssetfirst nil (ssget "_X" '((0 . "VIEWPORT")(-4 . "&amp;gt;")(69 . 1))))&lt;/P&gt;
&lt;P&gt;and you can edit properties by PropertiesPalette [CTRL+1]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's a neat trick. So we have no built-in tool available to select all entities across the entire drawing (even the QSelets' "Entire drawing" means just the current space...) but the Properties Palette &lt;STRONG&gt;can&lt;/STRONG&gt; handle it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW not sure what you mean by your edit... the scale seems to be working this way.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2022 10:42:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595118#M114241</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-12-03T10:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595147#M114242</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;"That's a neat trick. So we have no built-in tool available to select all entities across the entire drawing"&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;You (and LT users) have a built in tool: The AutoCAD object selection! &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;SSGET is the Lisp-equivalent to the AutoCAD object selection.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ssget selection method "_X" is for "entire database", what means "all"&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;and exactly this is the AutoCAD object selection method called: selection method ALL !&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The problem is: There is only one command what accept all objects,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;all other commands are filtering the selection to the objects of the current space.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;STRONG&gt;&amp;nbsp;For non LT-USers with less Lisp knowledge, the&amp;nbsp; GUI ssget version is SSX from Expresstool,&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;&amp;nbsp;but the original ssx is very very limited.&lt;/FONT&gt; &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The command what accepts all objects is FILTER (so LT Users are happy too with this)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Try it: Use FILTER and [apply] it to....ALL&amp;lt;enter&amp;gt;&amp;lt;enter&amp;gt; &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;"BTW not sure what you mean by your edit... the scale seems to be working this way."&lt;/EM&gt;&lt;/P&gt;
&lt;STRONG&gt;For usual: YES! So long I can remember, For me it worked 100% but..&lt;BR /&gt;&lt;/STRONG&gt;&lt;STRONG&gt;But sometimes&lt;EM&gt; (newer version, depend on how the layouts created ?)&lt;/EM&gt; it is possible that it fails.&lt;BR /&gt;A simple test to check if it worked or not:&lt;BR /&gt;Change the scales and after this, select all again, check the scales.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;STRONG&gt;I have a Install of ACAD2020.1.6 where it doesn't work as it should.&lt;BR /&gt;Someone here with 2020.x.x to run a test? PM welcome.&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2022 11:11:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595147#M114242</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2022-12-03T11:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595195#M114243</link>
      <description>&lt;P&gt;Ok, I see. The old obsolete but powerful FILTER command can do that. Unfortunately, I am among those 95 percent of users who do not actively use this command.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The QSELECT is the tool I would expect to be able to do this. I wish one day someone would refine and redesign it so that it would be a complex but intuitive tool, comfortable to use and not the nightmare, as it is today. (just wishful thinking. Being realistic - not going to happen anytime soon.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have just the outdated C3D 2020 on ACAD 2020.1.4 here. I've just made a quick test on one complex drawing that I have here... the layouts have to be loaded to the memory first, then it works. This is unnecessary when using that LISP.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2022 12:11:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595195#M114243</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-12-03T12:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595207#M114244</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;"I am among those 95 percent of users who do not actively use this command. "&lt;/P&gt;
&lt;P&gt;If you would have to work with LT, you would from now &lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I am pretty sure you are using often Lisp to select &amp;lt;whatever&amp;gt; and for Users with no programming skills or with LT&lt;/P&gt;
&lt;P&gt;complicated selection filters -&amp;gt; Filter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;"2020.x.x to the memory first, then it works"&lt;/P&gt;
&lt;P&gt;Also if I rund 3x thrue each Layout, it fails in my sample (install/file) here.&lt;/P&gt;
&lt;P&gt;Perhaps we check this soon, but not today.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Filter has the power of ssget, but can not all of these things you can do with Qselect,&lt;/P&gt;
&lt;P&gt;the other direction the same: Qselect can some things what are not possible with ssget/filter,&lt;/P&gt;
&lt;P&gt;but it is very limited and can do just a small part of what is possible by ssget/Filter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":upside_down_face:"&gt;🙃&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2022 12:16:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/11595207#M114244</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2022-12-03T12:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12375790#M114245</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;any easy way of editing multiple layouts with 2024?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thaks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 09:34:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12375790#M114245</guid>
      <dc:creator>ruirego</dc:creator>
      <dc:date>2023-11-14T09:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12375796#M114246</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;any easy way of editing multiple layouts with 2024?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thaks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 09:36:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12375796#M114246</guid>
      <dc:creator>ruirego</dc:creator>
      <dc:date>2023-11-14T09:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376024#M114247</link>
      <description>&lt;P&gt;You can create a named page set-up and apply it to the layouts.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 11:32:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376024#M114247</guid>
      <dc:creator>RSomppi</dc:creator>
      <dc:date>2023-11-14T11:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376061#M114248</link>
      <description>&lt;P&gt;named page setup? how do i do that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;R^2&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 11:51:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376061#M114248</guid>
      <dc:creator>ruirego</dc:creator>
      <dc:date>2023-11-14T11:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376109#M114249</link>
      <description>&lt;P&gt;Start PLOT dialog and save your setup by a name (upper/left side of this dialog)&lt;/P&gt;
&lt;P&gt;or start command Pagesetup to create a named page setup.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 12:04:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376109#M114249</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2023-11-14T12:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376374#M114250</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this will change&amp;nbsp;all the VP settings defined for each layout?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 13:53:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376374#M114250</guid>
      <dc:creator>ruirego</dc:creator>
      <dc:date>2023-11-14T13:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376383#M114251</link>
      <description>&lt;P&gt;This topic is about layout (plot) settings. There are no viewport settings within the layout settings.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 13:55:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376383#M114251</guid>
      <dc:creator>RSomppi</dc:creator>
      <dc:date>2023-11-14T13:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376390#M114252</link>
      <description>sorry i meant layouts.&lt;BR /&gt;&lt;BR /&gt;i have several layouts, each one with color override for some lines. the ideia is to change all at the same time. instead of doing one by one. (click inside the layout and change the layer settings)</description>
      <pubDate>Tue, 14 Nov 2023 13:58:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376390#M114252</guid>
      <dc:creator>ruirego</dc:creator>
      <dc:date>2023-11-14T13:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376403#M114253</link>
      <description>&lt;P&gt;VPLAYERS=&lt;/P&gt;
&lt;P&gt;VPLAYER command&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 14:02:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376403#M114253</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2023-11-14T14:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to change a setting in multiple layouts at the same time?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376850#M114254</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;just tried VPLAYER but it doesn’t change the layer config in all layouts</description>
      <pubDate>Tue, 14 Nov 2023 16:43:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-change-a-setting-in-multiple-layouts-at-the/m-p/12376850#M114254</guid>
      <dc:creator>ruirego</dc:creator>
      <dc:date>2023-11-14T16:43:50Z</dc:date>
    </item>
  </channel>
</rss>

