<?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: Lisp for color changing... in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504556#M39269</link>
    <description>&lt;P&gt;That is clearly "doable," but it's not clear to me exactly what you want to do.&amp;nbsp; Is it to find all Layers that have blue color assigned to them, and change their color to magenta?&amp;nbsp; And only those Layers?&amp;nbsp; That is, does "every layer" in your description refer not to &lt;EM&gt;every layer in the drawing&lt;/EM&gt;, but to every layer &lt;EM&gt;with a particular color&lt;/EM&gt; assigned?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that's the intent, it can be done pretty simply without any code.&amp;nbsp; Open the Layer Manager and &lt;EM&gt;pick on the Color heading&lt;/EM&gt;&amp;nbsp;at the top of the color indicator column, to &lt;EM&gt;sort the Layers by color&lt;/EM&gt;.&amp;nbsp; That will put all those that are blue together, making it easy to select them together and change their color collectively.&amp;nbsp; But it could certainly be automated, if you really need that.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Oct 2022 15:50:52 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2022-10-24T15:50:52Z</dc:date>
    <item>
      <title>Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504495#M39267</link>
      <description>&lt;P&gt;I need a lisp that turns every layer in a drawing from one color to another.&amp;nbsp; In my case it's blue to magenta, but I'd like to be able to customize it.&amp;nbsp; So, if the code is hard to decipher, please point it out.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 15:32:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504495#M39267</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T15:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504541#M39268</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:foo (/ old new)
  (setq	old 5
	new 6
  )
  (vlax-for l (vla-get-layers (vla-get-activedocument (vlax-get-acad-object)))
    (if	(= old (vla-get-color l))
      (vla-put-color l new)
    )
  )
  (princ)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 24 Oct 2022 15:45:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504541#M39268</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-10-24T15:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504556#M39269</link>
      <description>&lt;P&gt;That is clearly "doable," but it's not clear to me exactly what you want to do.&amp;nbsp; Is it to find all Layers that have blue color assigned to them, and change their color to magenta?&amp;nbsp; And only those Layers?&amp;nbsp; That is, does "every layer" in your description refer not to &lt;EM&gt;every layer in the drawing&lt;/EM&gt;, but to every layer &lt;EM&gt;with a particular color&lt;/EM&gt; assigned?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that's the intent, it can be done pretty simply without any code.&amp;nbsp; Open the Layer Manager and &lt;EM&gt;pick on the Color heading&lt;/EM&gt;&amp;nbsp;at the top of the color indicator column, to &lt;EM&gt;sort the Layers by color&lt;/EM&gt;.&amp;nbsp; That will put all those that are blue together, making it easy to select them together and change their color collectively.&amp;nbsp; But it could certainly be automated, if you really need that.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 15:50:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504556#M39269</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-10-24T15:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504758#M39270</link>
      <description>&lt;P&gt;Unknown command...&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 17:15:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504758#M39270</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T17:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504759#M39271</link>
      <description>&lt;P&gt;Yes, only layers that are blue- change to magenta.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 17:16:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504759#M39271</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T17:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504762#M39272</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4520166"&gt;@rob.aHH2T8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Unknown command...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ronjonp_0-1666631858534.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1131438i3902DC65F6CD9C66/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ronjonp_0-1666631858534.png" alt="ronjonp_0-1666631858534.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 17:17:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11504762#M39272</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-10-24T17:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505129#M39273</link>
      <description>&lt;P&gt;Added&lt;/P&gt;&lt;P&gt;(vl-load-com)&lt;/P&gt;&lt;P&gt;to the end of the file... to no avail.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 20:33:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505129#M39273</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T20:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505171#M39274</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4520166"&gt;@rob.aHH2T8&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you save the file and then load it?&lt;/P&gt;
&lt;P&gt;Or did you copy the code into your command line?&lt;/P&gt;
&lt;P&gt;Or did you enter the command as "C:foo?"&amp;nbsp; If so, the command is just "FOO."&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 20:51:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505171#M39274</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-10-24T20:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505178#M39275</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4520166"&gt;@rob.aHH2T8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Added&lt;/P&gt;
&lt;P&gt;(vl-load-com)&lt;/P&gt;
&lt;P&gt;to the end of the file... to no avail.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How are you loading the code ? Perhaps read &lt;A href="http://www.lee-mac.com/runlisp.html" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;THIS&lt;/STRONG&gt;&lt;/A&gt; if you're having problems.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 20:56:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505178#M39275</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-10-24T20:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505225#M39276</link>
      <description>&lt;P&gt;I've loaded lisps before... (see attachment)&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 21:34:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505225#M39276</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T21:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505226#M39277</link>
      <description>&lt;P&gt;further developing&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;foo code try this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;; foo.lsp function changes every layer in a drawing from a selected color to another selected color
(defun c:foo (/ ccol get_color lyrtbl new old)
  (vl-load-com)
  ; get_color presents color chart &amp;amp; returns color selected from AutoCAD's 255 color index
  (defun get_color (col)
   (acad_colordlg col nil) ; select from AutoCAD 255 color index chart color to change
  )  
  (setq	lyrtbl (tblsearch"layer"(getvar"clayer")) ; get current layer
	      ccol (abs(cdr(assoc 62 lyrtbl))) ; get current layer color
  )
  (if (setq old (get_color ccol)) ; get old layer color
    (progn
     (if (setq new (get_color old)) ; get new layer color
       (progn
        (vlax-for l (vla-get-layers (vla-get-activedocument (vlax-get-acad-object))) ; loop through all layers
         (if	(= old (vla-get-color l))
          (vla-put-color l new) ; change all match colors
         )
        )
        (alert(strcat"All Layers with Color [" (itoa old) "] Successfully changed to Color: [" (itoa new) "]"))
       ) ; progn
       (princ"\nNo Color Selected.")
	   ) ; if new color selected
    ) ; progn
    (princ"\nNo Color Selected.")
  ) ; if old color selected
  (princ)
) ; defun foo&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 24 Oct 2022 21:34:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505226#M39277</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2022-10-24T21:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505231#M39278</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4520166"&gt;@rob.aHH2T8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I've loaded lisps before... (see attachment)&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I'm not sure what's going on. It works as intended on my machine.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 21:37:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505231#M39278</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-10-24T21:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505238#M39279</link>
      <description>&lt;P&gt;Does the "princ" part need to be at the end?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 21:44:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505238#M39279</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T21:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505268#M39280</link>
      <description>&lt;P&gt;This one didn't work either.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 22:03:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505268#M39280</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T22:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505277#M39281</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4520166"&gt;@rob.aHH2T8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Does the "princ" part need to be at the end?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The (princ) is a quiet end and has no impact on how the code runs. What errors are you seeing ? I see that&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;posted some code too but "it does not work' is fairly vague.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 22:08:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505277#M39281</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-10-24T22:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505379#M39282</link>
      <description>&lt;P&gt;Unknown command.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 23:21:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505379#M39282</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-24T23:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505390#M39283</link>
      <description>&lt;P&gt;Which is correct, I have&lt;/P&gt;&lt;P&gt;Full Autocad or CIV3D or Architecture&lt;/P&gt;&lt;P&gt;LT&amp;nbsp;&lt;/P&gt;&lt;P&gt;Autocad MAC&lt;/P&gt;&lt;P&gt;Bricscad&lt;/P&gt;&lt;P&gt;Another cad program&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 23:27:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505390#M39283</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2022-10-24T23:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505396#M39284</link>
      <description>&lt;P&gt;the problem is you're not saving the contents of the code into a file that AutoCAD will load automatically.&lt;/P&gt;&lt;P&gt;From your captured image, it shows file name as:&amp;nbsp;&lt;STRONG&gt;acad&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;But for AutoCAD to load the file automatically, it should be: &lt;STRONG&gt;acad.lsp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paulli_apa_0-1666654009066.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1131539i2A417E83EAEE8E63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paulli_apa_0-1666654009066.png" alt="paulli_apa_0-1666654009066.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this file needs to be in one of the AutoCAD support search path which is listed under &lt;STRONG&gt;OPTIONS&amp;gt;Files&amp;gt;Support File Search Path&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paulli_apa_1-1666654072495.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1131540i87D147BA0B2B38B1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paulli_apa_1-1666654072495.png" alt="paulli_apa_1-1666654072495.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So do this: open attached FOO.zip and then save FOO.lsp into one of the above folders.&lt;/P&gt;&lt;P&gt;Then at the AutoCAD command prompt enter:&lt;/P&gt;&lt;P&gt;(load"foo")&lt;/P&gt;&lt;P&gt;FOO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 23:31:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505396#M39284</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2022-10-24T23:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505401#M39285</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4520166"&gt;@rob.aHH2T8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Unknown command.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Try to copy and paste the code into the command line then call 'FOO'. You're missing a step somewhere me thinks.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 23:32:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11505401#M39285</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-10-24T23:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp for color changing...</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11507342#M39286</link>
      <description>&lt;P&gt;The lisp above it works...&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 15:33:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-color-changing/m-p/11507342#M39286</guid>
      <dc:creator>rob.aHH2T8</dc:creator>
      <dc:date>2022-10-25T15:33:48Z</dc:date>
    </item>
  </channel>
</rss>

