<?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: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783258#M166202</link>
    <description>&lt;P&gt;change 3 lines starting with &lt;STRONG&gt;&lt;EM&gt;csv_line&lt;/EM&gt;&lt;/STRONG&gt; with these&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;csv_line (strcat (cdr (assoc 1 text_dxf)) ",P2," (rtos (caadr point_list) 2 4) "," (rtos (cadadr point_list) 2 4) "\n"
                                                ",P1," (rtos (caar point_list) 2 4) "," (rtos (cadar point_list) 2 4)
                               )&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 26 Aug 2025 11:48:37 GMT</pubDate>
    <dc:creator>komondormrex</dc:creator>
    <dc:date>2025-08-26T11:48:37Z</dc:date>
    <item>
      <title>AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780470#M166153</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I'm facing an issue with my AutoLISP routine. The script is designed to detect rectangles that contain inner text and two points, then export that data to Excel. After exporting, the processed rectangles should change color to green in AutoCAD. However, some rectangles are not changing color and are not being printed to Excel—even though they appear identical to others (same layer, same line weight). I've tried many approaches but haven't found a solution.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;EM&gt;I'm attaching both the LISP file and the drawing file to help you understand the issue better.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;@BIGAL&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;@lee mack&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/660967"&gt;@_Tharwat&lt;/a&gt;&amp;nbsp;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Aug 2025 12:52:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780470#M166153</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-24T12:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780713#M166155</link>
      <description>&lt;P&gt;what is &lt;EM&gt;contain&lt;/EM&gt; for you?&lt;/P&gt;&lt;P&gt;does this &lt;EM&gt;contain&lt;/EM&gt;&amp;nbsp;or not?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="komondormrex_0-1756066017978.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1564072iA33E88B8B2942CCC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="komondormrex_0-1756066017978.png" alt="komondormrex_0-1756066017978.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Aug 2025 20:11:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780713#M166155</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2025-08-24T20:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780726#M166156</link>
      <description>&lt;P&gt;I understand the need for the padding, because of the instances where the Text is not fully within the rectangle, as&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13423916"&gt;@komondormrex&lt;/a&gt;&amp;nbsp;asked about.&amp;nbsp; The ones that fail all seem to be &lt;EM&gt;where two are close together&lt;/EM&gt;, close enough apparently that the selection is finding more than one piece of Text and/or more than two Points.&amp;nbsp; It's probably related to screen resolution vs. Zoom level, because I find that if I Zoom in closer, it gets some that it missed when Zoomed out.&lt;/P&gt;
&lt;P&gt;If you reduce the pad value back to 1, it may prevent that, but will probably mean some of the Text is not found [I suspect that's why you changed the pad value to 2].&lt;/P&gt;
&lt;P&gt;Would it make sense to have it first find all the Text and &lt;EM&gt;force it to the smaller height&lt;/EM&gt;, and run it with a reduced pad value?&amp;nbsp; Or maybe with&amp;nbsp;&lt;EM&gt;no&lt;/EM&gt; padding, if there's a height that will have all of them fully contained inside their rectangles.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Aug 2025 20:40:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780726#M166156</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2025-08-24T20:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780759#M166157</link>
      <description>&lt;P&gt;What I added to your code is:&lt;/P&gt;&lt;P&gt;1) &lt;STRONG&gt;Cmdecho&lt;/STRONG&gt;: At beginning of code save current setting, next disable it by setting it to 0 and then at end restore the original setting&lt;/P&gt;&lt;LI-CODE lang="general"&gt;  (setq acadobj (vlax-get-acad-object)
        adoc (vla-get-ActiveDocument acadobj)
        cmdecho (getvar "cmdecho") ; save current setting
  )
  (setvar "cmdecho" 0) ; disable &lt;/LI-CODE&gt;&lt;LI-CODE lang="general"&gt;  (setvar "cmdecho" cmdecho)
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;2) &lt;STRONG&gt;Zoom&lt;/STRONG&gt;: At the beginning of the repeat loop, Zoom to Object which is the Pline, then at the end of loop Zoom back to Previous location:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;      ;; Loop through each rectangle
      (repeat (setq i (sslength ss))
        (setq ent (ssname ss (setq i (1- i))))
        (command"_.Zoom""_OB" ent "") ; zoom close up to pline&lt;/LI-CODE&gt;&lt;LI-CODE lang="general"&gt;        (command"_.Zoom""_P") ; restore back to original view
      ) ; repeat&lt;/LI-CODE&gt;&lt;P&gt;This seem to work but increases the time to process tremendously.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Aug 2025 21:56:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13780759#M166157</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-08-24T21:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782593#M166187</link>
      <description>&lt;P&gt;Yes but once you check some objects inner . also thats also not export.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 03:11:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782593#M166187</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T03:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782595#M166188</link>
      <description>&lt;P&gt;yes some text outer but&amp;nbsp; not all some in inner but its also not export to csv please check . and give final solution&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 04:37:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782595#M166188</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T04:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782599#M166189</link>
      <description>&lt;P&gt;Yes but some texts are inner the rectangular that one also not export please once you check and give solution&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 03:15:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782599#M166189</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T03:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782674#M166190</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/16231043"&gt;@archana96&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you mean you need one certain text just quite close to a certain rectangle?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 06:13:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782674#M166190</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2025-08-26T06:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782802#M166192</link>
      <description>&lt;P&gt;YES.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 06:01:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782802#M166192</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T06:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782870#M166193</link>
      <description>&lt;P&gt;ITS LITTLE HELP BUT SOME OUT BOX THATS ALSO ITS TAKING(SMALL CONFUSION IS IT TAKING THAT OR ANOTHER ) AND SOME OBJECTS PROPER BUTS ITS NOT TAKING SO PLEASE PROVIDE BETTER SOLUTION&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 07:04:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13782870#M166193</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T07:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783013#M166194</link>
      <description>&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Bonjour&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/16231043"&gt;@archana96&lt;/a&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;They are humans (volunteers) who answer you so we thank you for not talking to them as if you were chatting with an AI.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;For example :&amp;nbsp;SO PLEASE PROVIDE BETTER SOLUTION.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Back to the question: &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;I think we should change the insertion point of the text to "middle center" and if this insertion point is in the rectangle, launch the function.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&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="2025-08-26_10-22-01.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1564582i2178163CFA8A8E4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="2025-08-26_10-22-01.png" alt="2025-08-26_10-22-01.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Amicalement&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 08:26:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783013#M166194</guid>
      <dc:creator>-didier-</dc:creator>
      <dc:date>2025-08-26T08:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783037#M166195</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/16231043"&gt;@archana96&lt;/a&gt;&lt;/P&gt;&lt;P&gt;check this one&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;;***************************************************************************************************************************************************************************

;	komondormrex, aug 2025

;***************************************************************************************************************************************************************************

(vl-catch-all-apply 'load (list "acetutil.fas"))
(vl-catch-all-apply 'load (list "acettest.fas"))

;***************************************************************************************************************************************************************************

(defun get_coords (pline)
  	(mapcar 'cdr (vl-remove-if-not '(lambda (group) (= (car group) 10)) (entget pline)))
)

;***************************************************************************************************************************************************************************

(defun c:FORSCB (/ count rect_proximity text_sset count_all text_dxf margin rect_sset point_sset point_list csv_line)
	(setq count 0
		  rect_proximity 40		;	quadrangle proximity in text heights to a given text. change to fine tune.
	)
    (if (and (setq text_sset (ssget '((0 . "text,mtext") (1 . "*SCB*"))))
			 (setq count_all (itoa (sslength text_sset)))
			 (setq csv_full_filename (getfiled "Select CSV Output file" "" "csv" 1))
			 (if (null (setq csv_id (open csv_full_filename "w")))
			 	 (alert "Can't open that CSV file. Please close it and try again.")
				 t
			 )
		)
		(progn
        (mapcar '(lambda (text) (if (and (or
											 (and
												  (equal '(0 . "TEXT") (assoc 0 (setq text_dxf (entget text))))
												  (setq margin -1)
										 		  (not (while (and (null (setq rect_sset (ssget "_cp" (mapcar '(lambda (vertex) (mapcar '+ '(0 0) vertex))
												  														  	   (acet-geom-txtbox text_dxf (setq margin (1+ margin)))
																								 	  )
																							         '((0 . "lwpolyline") (70 . 1) (90 . 4))
																						 )
																	   	 )
																   )
																   (&amp;lt; margin rect_proximity)
															  )
														)
												  )
												  rect_sset
											 )
											 (and
												  (equal '(0 . "MTEXT") (assoc 0 (setq text_dxf (entget text))))
												  (setq margin -1)
										 		  (not (while (and (null (setq rect_sset (ssget "_cp" (mapcar '(lambda (vertex) (mapcar '+ '(0 0) vertex))
												  														  	   (acet-geom-mtxtbox text_dxf (setq margin (1+ margin)))
																								 	  )
																							    	 '((0 . "lwpolyline") (70 . 1) (90 . 4))
															  			 				 )
																		 )
																   )
																   (&amp;lt; margin rect_proximity)
															  )
													   )
												  )
												  rect_sset
											 )
										 )
                 				  		 (= 1 (sslength rect_sset))
										 (setq point_sset (ssget "_cp" (get_coords (setq rect (ssname rect_sset 0))) '((0 . "point"))))
                 				  		 (= 2 (sslength point_sset))
            				    	)
							  		(progn
            				  				(mapcar '(lambda (ename) (vla-put-color (vlax-ename-&amp;gt;vla-object ename) 3))
													 (list rect text (ssname point_sset 0) (ssname point_sset 1))
											)
											(setq point_list (vl-sort (list (cdr (assoc 10 (entget (ssname point_sset 0)))) (cdr (assoc 10 (entget (ssname point_sset 1)))))
																	 '(lambda (point_1 point_2) (&amp;lt; (car point_1) (car point_2)))
															 )
												  csv_line (strcat (cdr (assoc 1 text_dxf)) ",P1," (rtos (caar point_list) 2 4) "," (rtos (cadar point_list) 2 4)
                              															    ",P2," (rtos (caadr point_list) 2 4) "," (rtos (cadadr point_list) 2 4)
														   )
											)
        									(write-line csv_line csv_id)
							  				(princ (strcat "\rProcessed rects: " (itoa (setq count (1+ count))) " of " count_all))
							  		)
         		 		 		)
           		 )
          		 (vl-remove-if 'listp (mapcar 'cadr (ssnamex text_sset)))
  		)
        (close csv_id)
		(if (not (zerop count))
        	(princ (strcat "\n\\U+2705 CSV Export Complete: " csv_full_filename))
        	(princ "\n\\U+2639 No data found to export")
		)
		)
    )
	(princ)
)

;***************************************************************************************************************************************************************************&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 26 Aug 2025 08:45:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783037#M166195</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2025-08-26T08:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783114#M166197</link>
      <description>&lt;P&gt;CHECK THIS ONE SIR&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 09:35:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783114#M166197</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T09:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783117#M166198</link>
      <description>&lt;P&gt;INSERT MIDDLE CENTER IS FINE BEACUSE ITS ALMOST INNER&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 09:36:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783117#M166198</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T09:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783197#M166199</link>
      <description>&lt;P&gt;NICE BUT THE P1 P2 CAME SAME LINE BUT NEED P1 BELOW P2&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 10:56:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783197#M166199</guid>
      <dc:creator>archana96</dc:creator>
      <dc:date>2025-08-26T10:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: AutoLISP Routine Issue – Some Rectangles Not Processed or Colored</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783258#M166202</link>
      <description>&lt;P&gt;change 3 lines starting with &lt;STRONG&gt;&lt;EM&gt;csv_line&lt;/EM&gt;&lt;/STRONG&gt; with these&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;csv_line (strcat (cdr (assoc 1 text_dxf)) ",P2," (rtos (caadr point_list) 2 4) "," (rtos (cadadr point_list) 2 4) "\n"
                                                ",P1," (rtos (caar point_list) 2 4) "," (rtos (cadar point_list) 2 4)
                               )&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 26 Aug 2025 11:48:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autolisp-routine-issue-some-rectangles-not-processed-or-colored/m-p/13783258#M166202</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2025-08-26T11:48:37Z</dc:date>
    </item>
  </channel>
</rss>

