<?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: change the colour properties for all layouts and details in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951825#M358461</link>
    <description>&lt;P&gt;this is not working. kindly review the LISP again.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Dec 2025 17:48:21 GMT</pubDate>
    <dc:creator>karfung</dc:creator>
    <dc:date>2025-12-19T17:48:21Z</dc:date>
    <item>
      <title>change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937338#M357991</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Sir,&lt;BR /&gt;Kindly advise, step or lisp, how to change the colour properties for all layouts and details in a single AutoCAD file.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 06:17:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937338#M357991</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-09T06:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937359#M357993</link>
      <description>&lt;P&gt;Hi and Welcome to AutoCAD Forum,&lt;/P&gt;
&lt;P&gt;If you're talking here about Layers...&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In a single CAD file You have to make it manually and one by one.&lt;/LI&gt;
&lt;LI&gt;For multi-CAD files you can try &lt;A href="https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-F2793AC4-872D-40D1-8359-EDA51C51EEEA" target="_blank" rel="noopener"&gt;LAYTRANS&lt;/A&gt; (Command).&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 09 Dec 2025 06:27:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937359#M357993</guid>
      <dc:creator>imadHabash</dc:creator>
      <dc:date>2025-12-09T06:27:21Z</dc:date>
    </item>
    <item>
      <title>回复： change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937365#M357994</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18348131"&gt;@karfung&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can change the color properties for all layouts and details in a single AutoCAD file by applying a plot style (.ctb) to every layout so the chosen colors are controlled uniformly during plotting.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 06:33:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937365#M357994</guid>
      <dc:creator>vinodkl</dc:creator>
      <dc:date>2025-12-09T06:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937421#M357998</link>
      <description>&lt;P&gt;You can use this simple code to cycle through each layout and assign vp color to &lt;STRONG&gt;7&lt;/STRONG&gt; for all layers in all vports:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(foreach itm (layoutlist) (setvar "ctab" itm)(command "_.Pspace" "_.Vplayer" "_Co" "7" "*" "_All" ""))&lt;/LI-CODE&gt;&lt;P&gt;But if you have any objects assigned with their own colors then you'll have to run the following lisp function &lt;STRONG&gt;cbyl&lt;/STRONG&gt; to change all objects Color assignment to Bylayer:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:cbyl (/ ctab setbylayermode)
 (setq ctab (getvar "ctab")) ; save current tab 
 (setvar "ctab" "Model") ; change to Model tab
 (setq setbylayermode (getvar "setbylayermode")) ; save current settings
 (setvar "setbylayermode" 1) ; change color to bylayer only
 (command "_.Layer" "_Unl" "*" "") ; unlock all layers
 (command "_.Setbylayer" "_All" "" "_Y" "_Y") 
 (setvar "setbylayermode" setbylayermode) ; restore original settings
 (setvar "ctab" ctab) ; restore original layout
 (princ) ; clean exit
) ; defun&lt;/LI-CODE&gt;&lt;P&gt;If there are xrefs, you'll have to set &lt;STRONG&gt;Xrefoverride&lt;/STRONG&gt; to &lt;STRONG&gt;1&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 07:24:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13937421#M357998</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-09T07:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13938696#M358028</link>
      <description>&lt;P&gt;Hi imadhabash,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only certain layer needs to be changed. Therefore, your method is not suitable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Lisp with be good. thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 21:27:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13938696#M358028</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-09T21:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13938712#M358032</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hi paullimapa,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thanks for your reply. Could we enhance the Lisp by adding the step after the Lisp is entered in the command bar as below,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;1). Ask which layer to change the colour properties. (This allows the user to select the area using the cursor.)&amp;nbsp;&lt;BR /&gt;2). What colour code to be used? (User to enter the colour code)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;3). Finish and appear in model space. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Condition:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;1). The activity to be done in model space only.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;2). A certain layer is involved.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;3). Shall allow user for the colour code.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thanks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 21:37:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13938712#M358032</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-09T21:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13938832#M358037</link>
      <description>&lt;P&gt;Questions;&lt;/P&gt;&lt;P&gt;“&lt;SPAN&gt;1). Ask which layer to change the colour properties. (This allows the user to select the area using the cursor.) ”&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you want the user to select objects on the drawing area and then those layers objects are on would have the color change or should a list box be presented to select from a list of layer names?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;“&lt;SPAN&gt;The activity to be done in model space only. ”&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this is what you really want you can do this now using the Layer manager window&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Changing a layers color in model space automatically changes all layers color in all &amp;nbsp;vports unless there are vport color overrides. Or you want VP colors changed which is what my initial response covers? Please clarify.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 22:34:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13938832#M358037</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-09T22:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939713#M358051</link>
      <description>&lt;P&gt;Hi paullimapa,&lt;BR /&gt;&lt;SPAN&gt;If this is what you really want you can do this now using the Layer manager window.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Some of the layer colour in the block or attribute may unable to change. If this happened, any advise to resolve.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 14:30:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939713#M358051</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-10T14:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939778#M358052</link>
      <description>&lt;P&gt;Try the cbyl lisp function I posted in my initial reply and see if that solves the problem&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 15:21:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939778#M358052</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-10T15:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939815#M358054</link>
      <description>&lt;P&gt;Hi paullimapa,&lt;BR /&gt;Colud the CBYL include,&amp;nbsp;&lt;/P&gt;&lt;P&gt;1). To ask change to what colour code. By this, eventually, all the layers changed to the colour code the user wanted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;2). Change the colour as requested for the arrow in the dimension also.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly advise.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 15:48:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939815#M358054</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-10T15:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939961#M358066</link>
      <description>&lt;P&gt;To clarify the&amp;nbsp;&lt;SPAN&gt;CBYL lisp function basically runs AutoCADs built in setbylayer command so that all objects color assignments are now based on the Layer they are on. &amp;nbsp;Now you can use the Layer Properties Manager window to select and change the layers to the desired Color.&amp;nbsp;&lt;BR /&gt;Im not awared that the Dimension arrows colors still won’t change to Bylayer. Maybe these are controlled inside the Dimension Style. Could you include a sample dwg with these Dimensions so I can take a look?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 17:06:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13939961#M358066</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-10T17:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13940388#M358078</link>
      <description>&lt;P&gt;Found this lisp function that changes all dimensions including arrows &amp;amp; leaders to color bylayer:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-mleaders-to-by-layer/td-p/8323632" target="_blank"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-mleaders-to-by-layer/td-p/8323632&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:All2BL (/ colorObj) ;Sets everything to by layer including leaders
	(vlax-for block (vla-get-blocks (vla-get-activedocument (vlax-get-acad-object)))
		(vlax-for obj block
			(cond 
				((wcmatch (vla-get-objectname obj) "AcDb*Dimension,AcDbLeader")
					(foreach prop '(Color DimensionLineColor ExtensionLineColor TextColor)
						(vl-catch-all-apply 'vlax-put-property (list obj prop acbylayer))
					)
				)
				((wcmatch (vla-get-objectname obj) "AcDbMLeader")
					(setq colorObj (vlax-get-property obj 'LeaderLineColor))
					(vla-put-ColorMethod colorObj 192)
					(vlax-put-property obj 'LeaderLineColor colorObj)
					(vl-catch-all-apply 'vla-put-color (list obj acbylayer))
				)
				(T
					(vl-catch-all-apply 'vla-put-color (list obj acbylayer))
				)
			)
		)
	)
	(print "Everything has been set to by layer!")
	(princ)
)&lt;/LI-CODE&gt;&lt;P&gt;After copy &amp;amp; pasted the code and saving as&amp;nbsp;&lt;STRONG&gt;all2bl.lsp&lt;/STRONG&gt; you do the following to load it at the command prompt:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(load "all2bl")&lt;/LI-CODE&gt;&lt;P&gt;Then to run it at the command prompt enter:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;All2Bl&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 22:18:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13940388#M358078</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-10T22:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13950235#M358406</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="karfung_0-1766070205534.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1605917i489FE30FC37A6412/image-size/medium?v=v2&amp;amp;px=400" role="button" title="karfung_0-1766070205534.png" alt="karfung_0-1766070205534.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes, this is working. Could you do me a favour to revise as follows,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1). The function is not working on mtext.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2).&amp;nbsp;The function is not working on the item to be an array.&amp;nbsp;&lt;BR /&gt;Thanks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 15:07:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13950235#M358406</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-18T15:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13950513#M358414</link>
      <description>&lt;P&gt;please clarify where this is in the dwg:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"item to be an array"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 18:35:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13950513#M358414</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-18T18:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951005#M358438</link>
      <description>&lt;P&gt;the red colour dot as per picture or drawing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 03:40:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951005#M358438</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-19T03:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951154#M358441</link>
      <description>&lt;P&gt;Ok, found a couple of lisp functions on-line that will take care of both of your wish list:&lt;/P&gt;&lt;P&gt;MText =&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;StpMtext.lsp&lt;/STRONG&gt; (modified to&amp;nbsp;remove Color formatting only)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;by TWilley&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://forums.augi.com/showthread.php?53180-Change-color-of-existing-MTEXT-Objects" target="_blank"&gt;https://forums.augi.com/showthread.php?53180-Change-color-of-existing-MTEXT-Objects&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;Array Blocks =&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;BENL0.lsp&lt;/STRONG&gt; (&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;changes all selected Block Entities to layer 0)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;;; &amp;nbsp;Kent Cooper, edited 30 December 2019 [from BENL0CL.lsp]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;; &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/beltb-lsp-multiple-blocks/m-p/9224162/highlight/true#M80143" target="_blank"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/beltb-lsp-multiple-blocks/m-p/9224162/highlight/true#M80143&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After loading &amp;amp; running both those lisp functions this is how your dwg looks like now:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1766129267022.png" style="width: 455px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1606107i8C85362182F12522/image-dimensions/455x325?v=v2" width="455" height="325" role="button" title="paullimapa_0-1766129267022.png" alt="paullimapa_0-1766129267022.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 07:29:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951154#M358441</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-19T07:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951640#M358451</link>
      <description>&lt;P&gt;It not working. Could provide the complete lisp with change the drawing1 to 1 colour?&amp;nbsp;&lt;/P&gt;&lt;P&gt;It have change for leader, mtext &amp;amp; arrary for red dot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 15:11:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951640#M358451</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-19T15:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951809#M358458</link>
      <description>&lt;DIV&gt;Please clarify what you mean by this:&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;"...change the drawing1 to 1 colour?&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;I've combined into a single file&amp;nbsp;&lt;STRONG&gt;All.lsp&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;which includes the following functions (some modified for this project) and automatically executes them all after loading:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Cbyl, All2Bl, StpMtext, BENL0CL&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="general"&gt;(load"all")&lt;/LI-CODE&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Dec 2025 17:35:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951809#M358458</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-12-19T17:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951825#M358461</link>
      <description>&lt;P&gt;this is not working. kindly review the LISP again.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 17:48:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951825#M358461</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-19T17:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: change the colour properties for all layouts and details</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951830#M358462</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="karfung_0-1766166552699.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1606270i2A36A5C8117C4FE2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="karfung_0-1766166552699.png" alt="karfung_0-1766166552699.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It is not working for DIM and array of the red dot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 17:50:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-the-colour-properties-for-all-layouts-and-details/m-p/13951830#M358462</guid>
      <dc:creator>karfung</dc:creator>
      <dc:date>2025-12-19T17:50:03Z</dc:date>
    </item>
  </channel>
</rss>

