<?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: make changes to the current lisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192612#M25059</link>
    <description>&lt;P&gt;Perfect job, it works very well, thanks a million! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2023 00:42:13 GMT</pubDate>
    <dc:creator>mruPRQUJ</dc:creator>
    <dc:date>2023-08-24T00:42:13Z</dc:date>
    <item>
      <title>make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12191470#M25044</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wonder if the below changes can be made to the current lisp?&lt;BR /&gt;1. The current lisp remove letter from the attribute of the blocks, for example, "1A", it will be changed to "1".&lt;BR /&gt;I want to add "1" to current attribute value, for example, if the current value is "2", the new value will be "3". The following blocks and respectively tag will be changed.&lt;BR /&gt;block names are BCH-X-BORD-DXXX, BCH-X-BORD-BXXX, BCH-X-BORD-AXXX, BCH-X-BORD-REVI, BCH-X-BORD-REVI-TRIA, BCH-X-ANNO-STMP-OBSO&lt;BR /&gt;attribute tag is REV_`#, R_NO, R_NO_D&amp;amp;E, R_NO_A&amp;amp;B, REV_NO&lt;/P&gt;&lt;P&gt;2. add one layer to the DWG, layer name: $X-ANNO-REVC-ELEC, color: 220&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see the lisp below, the lisp file and one DWG file with blocks were attached as well, thank you very much in advance. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;(vl-load-com)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;(defun c:ASet (/ format_date chgtxt adoc data_assoc_list ss attribute_tag attribute_string)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;;********************************************************************************************&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(defun format_date (/ mon date)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq mon '("JAN" "FEB" "MAR" "APR" "MAY" "JUN" "JUL" "AUG" "SEP" "OCT" "NOV" "DEC"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq date (rtos (fix (getvar "cdate")) 2 0))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(strcat (substr date 1 4) (nth (1- (atoi (substr date 5 2))) mon) (substr date 7 2))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; ;********************************************************************************************&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(defun chgtxt (string)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(cond&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(= (car (reverse (vl-string-&amp;gt;list string))) 65)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vl-string-subst "" "A" string)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(= (car (reverse (vl-string-&amp;gt;list string))) 97)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vl-string-subst "" "a" string)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; ;********************************************************************************************&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq data_assoc_list '(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;("DATE" . "2023AUG25")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(if (ssget "_X" (list '(0 . "insert")))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vlax-for block_reference (vla-get-activeSelectionSet (vla-get-activedocument (vlax-get-acad-object)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(cond&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(wcmatch (strcase (vla-get-effectiveName block_reference)) "BCH-X-BORD-DXXX,BCH-X-BORD-BXXX,BCH-X-BORD-AXXX,BCH-X-BORD-REVI-TRIA,BCH-X-ANNO-STMP-OBSO")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(foreach attribute (vlax-invoke block_reference 'getAttributes)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq attribute_tag (strcase (vla-get-tagString attribute)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq attribute_string (vla-get-textString attribute))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(cond&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq item (assoc attribute_tag data_assoc_list))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (vla-put-textString attribute (format_date))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (vla-put-textString attribute (cdr item))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(wcmatch attribute_tag "REV_`#,R_NO,R_NO_D&amp;amp;E,R_NO_A&amp;amp;B,REV_NO")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (cond&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;((wcmatch attribute_string "#[AaAa]")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (setq attribute_string (substr attribute_string 1 1)) ; keep only #&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (vla-put-textString attribute attribute_string)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;((wcmatch attribute_string "##[AaAa]")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (setq attribute_string (substr attribute_string 1 2))&amp;nbsp; ; keep only ##&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (vla-put-textString attribute attribute_string)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ) ; cond&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;(&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(= "BCH-ST-DYN-DWG-ISSUE" (vla-get-effectivename block_reference))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setpropertyvalue (vlax-vla-object-&amp;gt;ename block_reference) "AcDbDynBlockPropertyVisibility" "IRD - ISSUE RECORD DRAWING")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;t&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vlax-release-object block_reference)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;(vl-cmdf "_.Layer" "_F" "$X-ANNO-REVC" "") ; freeze layer "$X-ANNO-REVC"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;(princ)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Aug 2023 15:28:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12191470#M25044</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-23T15:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192089#M25045</link>
      <description>&lt;P&gt;so since current attrib is &lt;STRONG&gt;0A&lt;/STRONG&gt; you want it changed to &lt;STRONG&gt;1A&lt;/STRONG&gt; or just &lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1692819708101.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1257185iC1A90E8C85D75FFE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1692819708101.png" alt="paullimapa_0-1692819708101.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 19:43:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192089#M25045</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-23T19:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192108#M25046</link>
      <description>&lt;P&gt;Sorry I did not say it clearly. The current one will remove the letter. For example, "1A", "2A" will be changed to "1", "2". I wish to increase value by "1". For instance, "1", "5" will be changed to "2", "6", thanks a lot!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 19:57:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192108#M25046</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-23T19:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192111#M25047</link>
      <description>&lt;P&gt;so since your current example shows "0A", then you want it to be "1" right?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 19:59:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192111#M25047</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-23T19:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192118#M25048</link>
      <description>&lt;P&gt;maybe there are mistakes in the lisp. I just run the lisp, "1A", "2A" attributes in the DWG were changed to "1", "2"&lt;/P&gt;&lt;P&gt;Maybe the below part did the job.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mruPRQUJ_0-1692821034928.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1257191iC9D8AE5A47853D22/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mruPRQUJ_0-1692821034928.png" alt="mruPRQUJ_0-1692821034928.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:04:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192118#M25048</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-23T20:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192166#M25049</link>
      <description>&lt;P&gt;Then you must have posted the wrong sample dwg.&lt;/P&gt;&lt;P&gt;That one contains a &lt;STRONG&gt;Rev_#&lt;/STRONG&gt; of &lt;STRONG&gt;0A&lt;/STRONG&gt; like I posted earlier:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_3-1692821690808.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1257203i3B6AC4507B25FA06/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_3-1692821690808.png" alt="paullimapa_3-1692821690808.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When the current lisp you posted runs it changes &lt;STRONG&gt;Rev_#&lt;/STRONG&gt; to &lt;STRONG&gt;0&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1692821588780.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1257200i0D5D9B731606E0C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1692821588780.png" alt="paullimapa_0-1692821588780.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;For me either way works because the lisp can be revised so that:&lt;/P&gt;&lt;P&gt;If it sees a "&lt;STRONG&gt;0A&lt;/STRONG&gt;", it'll be changed to "&lt;STRONG&gt;1&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;If it sees a "&lt;STRONG&gt;1A&lt;/STRONG&gt;", it'll be changed to "&lt;STRONG&gt;2&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;I assume this is what you want, right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:17:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192166#M25049</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-23T20:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192176#M25050</link>
      <description>&lt;P&gt;yes, you are right. The dwg have some blocks, but it did not match the lisp. Sorry about it. What I wish:&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. the current value plus "1". "1" will be changed to "2", "5" will be changed to "6"&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. add one layer to the DWG, layer name: $X-ANNO-REVC-ELEC, color: 220&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:22:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192176#M25050</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-23T20:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192188#M25051</link>
      <description>&lt;P&gt;Ok, then I have another question.&lt;/P&gt;&lt;P&gt;What if &lt;STRONG&gt;REV_#&lt;/STRONG&gt; only shows a single digit like "&lt;STRONG&gt;1&lt;/STRONG&gt;" and no letters following?&lt;/P&gt;&lt;P&gt;Do you still want the "&lt;STRONG&gt;1&lt;/STRONG&gt;" to become "&lt;STRONG&gt;2&lt;/STRONG&gt;" or do you think there would &lt;STRONG&gt;NOT&lt;/STRONG&gt; be a situation where you only have a single digit value for&amp;nbsp;&lt;STRONG&gt;Rev_#&lt;/STRONG&gt;?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:32:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192188#M25051</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-23T20:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192197#M25052</link>
      <description>&lt;P&gt;all the attributes without letter, "1" becomes "2", "5" becomes "6", the value is added "1". sorry about it, thanks&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:36:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192197#M25052</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-23T20:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192205#M25053</link>
      <description>&lt;P&gt;Ok, give this revised &lt;STRONG&gt;ASet.lsp&lt;/STRONG&gt; version a try.&lt;/P&gt;&lt;P&gt;Keep in my that every time it is run the &lt;STRONG&gt;Rev_#&lt;/STRONG&gt;&amp;nbsp;value will increment by 1&lt;/P&gt;&lt;P&gt;So don't run it again on the same dwg if you don't want it to change again.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:38:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192205#M25053</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-23T20:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192243#M25054</link>
      <description>&lt;P&gt;I am little busy; I will test it later. Could you please advise me if the new layer was added as well? many thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192243#M25054</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-23T20:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192247#M25055</link>
      <description>&lt;P&gt;of course that's an easy add towards the end of the code like before.&lt;/P&gt;&lt;P&gt;Even you can do this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt; (vl-cmdf "_.Layer" "_M" "$X-ANNO-REVC-ELEC" "_Co" 220 "" "") ; add layer name: $X-ANNO-REVC-ELEC, color: 220 &lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 23 Aug 2023 20:55:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192247#M25055</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-23T20:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192320#M25056</link>
      <description>&lt;P&gt;&amp;nbsp;I am a little busy, I will test it later, thanks a lot, &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 21:19:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192320#M25056</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-23T21:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192594#M25057</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great job! I wonder if the&amp;nbsp;layer "$X-ANNO-REVC" can be freezed, I can't thank you enough. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 00:18:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192594#M25057</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-24T00:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192603#M25058</link>
      <description>&lt;P&gt;Sure&amp;nbsp;&lt;SPAN&gt;replace this line of code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vl-cmdf "_.Layer" "_M" "$X-ANNO-REVC-ELEC" "_Co" 220 "" "") ; add layer name: $X-ANNO-REVC-ELEC, color: 220 &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With these 2 lines:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;  (vl-cmdf "_.Layer" "_M" "$X-ANNO-REVC-ELEC" "_Co" 220 "" "") ; add layer name: $X-ANNO-REVC-ELEC, color: 220 
  (vl-cmdf "_.Layer" "_F" "$X-ANNO-REVC" "") ; freeze layer name: $$X-ANNO-REVC&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 00:29:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192603#M25058</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-24T00:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192612#M25059</link>
      <description>&lt;P&gt;Perfect job, it works very well, thanks a million! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 00:42:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192612#M25059</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-24T00:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192620#M25060</link>
      <description>&lt;P&gt;make it look like this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vl-cmdf "_.Layer" "_M" "$X-ANNO-REVC-ELEC" "_Co" 220 "" "") ; add layer name: $X-ANNO-REVC-ELEC, color: 220 
(vl-cmdf "_.Layer" "_F" "$X-ANNO-REVC" "") ; freeze layer name: $$X-ANNO-REVC&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 00:43:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192620#M25060</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-24T00:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192624#M25061</link>
      <description>&lt;P&gt;Thank you very much from the bottom of my heart! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 00:46:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192624#M25061</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2023-08-24T00:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: make changes to the current lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192632#M25062</link>
      <description>&lt;P&gt;Glad to help … cheers!!!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 00:55:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-changes-to-the-current-lisp/m-p/12192632#M25062</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-08-24T00:55:00Z</dc:date>
    </item>
  </channel>
</rss>

