<?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: Select the circle &amp;amp; output to Mtext! in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598447#M56083</link>
    <description>&lt;P&gt;If you see any ACET- error messages it could be that the correct .ARX library program has not been loaded, look for acetutil.arx and use appload etc. Or change the acet-ss-get-filter to a normal ssget syntax.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Acet functions are extra functionality another is DOSLIB. Google Acet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 04 Sep 2021 01:55:37 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2021-09-04T01:55:37Z</dc:date>
    <item>
      <title>Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10594139#M56072</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;I want to create a routine with the require as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Choose the area, it will select only circles with layername is :55.&lt;BR /&gt;Next step:&lt;BR /&gt;If that circle with diameter Ø3.3--&amp;gt;Out put will be M4(Using Mtext) --&amp;gt;Change&amp;nbsp;Ø3.3 and M4(Mtext)to layername(22)&lt;/P&gt;&lt;P&gt;If that circle with diameter Ø4.2--&amp;gt;Out put will be M5(Using Mtext) --&amp;gt;Change&amp;nbsp;Ø4.2 and M5(Mtext)to layername(33)&lt;/P&gt;&lt;P&gt;If that circle with diameter Ø5--&amp;gt;Out put will be M6(Using Mtext) --&amp;gt;Change&amp;nbsp;Ø5 and M6(Mtext)to layername(44)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If the quantity of Ø3.3 is 1--&amp;gt;output--&amp;gt;1-M4, 2--&amp;gt;output--&amp;gt;2-M4.......Ø4.2&amp;amp;Ø5 is the same.&lt;BR /&gt;I am trying to create a lisp but get stucked.........The sample file is also attached.It will be greated if it is done perpectly by someone can help me!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="moza2020_0-1630598294085.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/960384i5FB21E70CBF3E85D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_0-1630598294085.png" alt="moza2020_0-1630598294085.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;(defun C:TAP ()&lt;/P&gt;&lt;P&gt;(if(setq A (ssget "_:L" '((-4 . "&amp;lt;and") (0 . "CIRCLE") (8 . "55") (-4 . "and&amp;gt;"))))&lt;BR /&gt;(progn&lt;BR /&gt;(setq n 0)&lt;BR /&gt;(setq B (sslength A))&lt;BR /&gt;(while (&amp;lt; n B)&lt;BR /&gt;(setq C (ssname A n))&lt;BR /&gt;(setq D (entget C))&lt;BR /&gt;(setq B2 (cdr (assoc 40 D)))&lt;BR /&gt;(setq B1 (* B2 2))&lt;BR /&gt;(setq n (+ n 1))&lt;BR /&gt;(command&lt;BR /&gt;"_.MTEXT"&lt;BR /&gt;pause&lt;BR /&gt;"_Justify" "TL"&lt;BR /&gt;"_Height" 20&lt;BR /&gt;"_none" "@"&lt;BR /&gt;B "M" B1 ""))))&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 16:04:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10594139#M56072</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-02T16:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10594324#M56073</link>
      <description>&lt;P&gt;Here's the core. Search&amp;nbsp;&lt;A href="https://help.autodesk.com/view/ACD/2022/ENU/?guid=GUID-5E5DB93B-F8D3-4433-ADF7-E92E250D2BAB" target="_self"&gt;HERE&lt;/A&gt;&amp;nbsp;for codes of MTEXT definition to adjust the mtext format as you need -- or use your &lt;EM&gt;command&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:tap ( / s p i )
  
  (if (and (setq s (ssget "_:L" '((0 . "CIRCLE") (8 . "55") (-4 . "&amp;lt;OR") (40 . 1.65) (40 . 2.1) (40 . 2.5) (-4 . "OR&amp;gt;"))))
	   (setq p (getpoint "\nPlace 1st text: "))
	   (setq i -1)
	   )
    (foreach e '((1.65 "22" "-M4")
		 (2.1 "33" "-M5")
		 (2.5 "44" "-M6"))
      (and (setq x (acet-ss-ssget-filter s (list (cons 40 (car e)))))
	   (entmake (list '(0 . "MTEXT") '(100 . "AcDbEntity") '(100 . "AcDbMText")
			  (cons 10 (polar p (* 1.5 pi) (* 30 (setq i (1+ i)))))
			  (cons 1 (strcat (itoa (sslength x)) (last e)))
			  (cons 8 (cadr e))))
	   (vl-cmdf "_.chprop" x "" "_layer" (cadr e) ""))))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 17:32:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10594324#M56073</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-09-02T17:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10595861#M56074</link>
      <description>&lt;LI-CODE lang="lisp"&gt;(setq esp10pid nil setmypid "")
(defun jc_aro10(loopwne  / rom subf mypid) 
   (setq mypid (car loopwne))
   (setq setmypid mypid subf (substr mypid 5) esp10pid (cons (strcat (substr mypid 1 4) "\n") esp10pid))
   (setq rom (apply (read subf) (cdr loopwne)))
   (setq esp10pid (cdr esp10pid))
rom)
(setvar "ModeMacro" "YouType.err=(princ SETMYPID) and (princ ESP10PID)")
(defun getmypid (/ )
 (princ "\nSetMyPid=") (princ setmypid) 
 (princ "\nCONFIG_STACKTRACE=") (princ esp10pid)
)
 (setq const_systasserte nil acad__assertNo 0)
 (princ)

(DeFun C:q2()
 (setq;|a000|;
	 dfn_pp_v1chkR nil)  
  (autoexec_app)
)


(Defun asserte(mssg / rr)
 (setq;|a000|;
	 acad__assertNo (+ acad__assertNo 1)) (if (/= mssg nil) (setq;|a000|;
	 erprv erlsp
	 erlsp mssg)) 
erlsp)

(DeFun C:autoexec_app()
     (autoexec_app )
)

(prompt "\nCommand.com= C:Q2[enter] or Q2[enter]\n")
(Defun autoexec_app( / )

;------------------------Stdcall "nn_vmload "
  (setq _ax (nn_vmload ))
;------------------------

 (princ "\nEnd")  
T)
 
(defun RenderCmds0h( / cpp);;
;;09sudo dpkg --add ;stdcall
;;12sudo fail --del "#endregion"
;;13sudo fail --del "=10"
(setq RenderCmd.cpp 13));;
;(User Labels)
;(nn_vmload)

(setq moza2020 '((1.65 "22" "-M4")
		 (2.1 "33" "-M5")
		 (2.5 "44" "-M6"))
)

(Defun nn_vmload(/ fnt ppt i allc item cnt md5 xcd lpt enl pdc ask pdf vhd lgr cpy)
 (setq;|a000|;
	 cnt 0
	 $rr 0
	 lgr nil
	 md5 (list "\nPlace 1st text: " "\nPlace 2th point: ")) (setq;|a000|;
	 ask (jc_aro10 (list "C001dfn_getx_readkey" "[YNC]" "\nAll SourceCircles from55layer(y.yes)(n.no): "))
	 fns (jc_aro10 (list "C002ssget" "_:L" (list (jc_aro10 (list "C003cons" 0 "CIRCLE")) (if (=  ask "Y") (jc_aro10 (list "C004cons" 8 "55")) (jc_aro10 (list "C005cons" 100 "AcDbEntity"))) (jc_aro10 (list "C006cons" (- 4) "&amp;lt;OR")) (jc_aro10 (list "C007cons" 40 1.65)) (jc_aro10 (list "C008cons" 40 2.1)) (jc_aro10 (list "C009cons" 40 2.5)) (jc_aro10 (list "C010cons" (- 4) "OR&amp;gt;")))))) (if fns (setq;|a000|;
	 allc (jc_aro10 (list "C011dfn_ssg_tolistvla" fns))) (progn  (jc_aro10 (list "C012alert" readme.txt)) (exit))) (jc_aro10 (list "C013vl_load_com")) (setq;|a000|;
	 ppt (jc_aro10 (list "C014getpoint" (car md5)))) (jc_aro10 (list "C015con_kpi")) (setq;|a000|;
	 pdf nil
	 i 0) (if (/= ppt nil) (foreach item moza2020 (setq;|a000|;
	 scd (jc_aro10 (list "C016acet-ss-ssget-filter" fns (list (jc_aro10 (list "C017cons" 40 (car item))))))
	 pdf (if scd (jc_aro10 (list "C018polar" ppt (* kpi 1.5) (* 30 i))) pdf)
	 $rr (if scd (jc_aro10 (list "C019entmakex" (list (jc_aro10 (list "C020cons" 0 "MTEXT")) (jc_aro10 (list "C021cons" 100 "AcDbEntity")) (jc_aro10 (list "C022cons" 8 (jc_aro10 (list "C023cadr" item)))) (jc_aro10 (list "C024cons" 100 "AcDbMText")) (jc_aro10 (list "C025cons" 010 pdf)) (jc_aro10 (list "C026cons" 1 (strcat (itoa (jc_aro10 (list "C027sslength" scd))) (jc_aro10 (list "C028last" item)))))))) $rr)
	 i (if scd (+ i 1) i)))) (setq;|a000|;
	 pdf (if (&amp;gt;  i 0) (jc_aro10 (list "C029getpoint" (jc_aro10 (list "C030cadr" md5)))) nil)
	 cpy (jc_aro10 (list "C031getvar" "copymode"))) (if pdf (progn  (if (jc_aro10 (list "C032numberp" cpy)) (jc_aro10 (list "C033setvar" "copymode" 0))) (command "_.copy" fns "" ppt pdf) (setq;|a000|;
	 vhd (jc_aro10 (list "C034getvar" "VIEWCTR"))) (jc_aro10 (list "C035grdraw" ppt vhd 19)) (jc_aro10 (list "C036grdraw" pdf vhd 19)) (setq;|a000|;
	 vhd (list 0.0 0.0 0.0)) (jc_aro10 (list "C037grdraw" ppt vhd 19)) (jc_aro10 (list "C038grdraw" pdf vhd 19)) (if (jc_aro10 (list "C039numberp" cpy)) (jc_aro10 (list "C040setvar" "copymode" cpy))))) 
$rr)
;Lib:free

(defun con_kpi(/ )
 (setq;|a000|;
	 kpi 3.14159265358979323846
	 kHalfPi 1.57079632679489661923
	 kTwoPi 6.28318530717958647692
	 kpi_max 3.14159265358979323846264338327950288) 
)
;Lib:free

(defun dfn_ssg_tolistvla(freepick / ldm idx $rr $rl nop cpm)
 (jc_aro10 (list "C041vl_load_com")) (setq;|a000|;
	 ldm (if (=  (type freepick) (jc_aro10 (list "C042read" "PICKSET"))) freepick (if (=  (type freepick) (jc_aro10 (list "C043read" "ENAME"))) (jc_aro10 (list "C044ssadd" freepick (jc_aro10 (list "C045ssadd")))) nil))
	 idx (if ldm (- (jc_aro10 (list "C046sslength" ldm)) 1) -5002)
	 $rl nil
	 $rr nil) (if (and  ldm (&amp;gt;= idx 0)) (progn (while (&amp;gt;= idx 0) (setq;|a000|;
	 cpm (jc_aro10 (list "C047ssname" ldm idx))
	 $rr (jc_aro10 (list "C048cons" cpm $rr))
	 cpm (jc_aro10 (list "C049vlax-ename-&amp;gt;vla-object" cpm))
	 $rl (if cpm (jc_aro10 (list "C050cons" cpm $rl)) $rl)) (setq;|a000|;
	 idx (- idx 1))))) 
(list $rl $rr))
;Lib:free

;;Inf:Wait until press keys k
(defun dfn_getx_readkey(k574 t469 / retc kbd msg two chk lei)
 (setq;|a000|;
	 retc (chr 0)
	 kbd (if (&amp;gt;  k574 "") k574 "")) (setq;|a000|;
	 msg (if (&amp;gt;  t469 "") t469 "\nByA:DragneAdrian2019=T469error&amp;lt;&amp;gt;Str:")) (prompt msg) (progn (setq;|a000|;
	 chk (if (&amp;gt;  (strlen kbd) 1) 0 1)) (while (=  chk 0) (progn  (setq;|a000|;
	 two 0) (while (/= two 2) (setq;|a000|;
	 lei (jc_aro10 (list "C051grread"))
	 two (car lei)) (setq;|a000|;
	 retc (jc_aro10 (list "C052strcase" (chr (jc_aro10 (list "C053cadr" lei)))))) (setq;|a000|;
	 chk (if (&amp;gt;  kbd "") (if (jc_aro10 (list "C054wcmatch" retc kbd)) 1 0) 0)))))) (princ retc) 
retc)
;Lib:free

(defun dfn_ent_assoc(it00 listscan / $rr ff)  
 (setq;|a000|;
	 $rr nil) (if listscan (progn  (setq;|a000|;
	 ff listscan) (if (=  (type ff) (jc_aro10 (list "C055read" "PICKSET"))) (setq;|a000|;
	 ff (jc_aro10 (list "C056ssname" listscan 0)))) (setq;|a000|;
	 $rr (if (=  (type ff) (jc_aro10 (list "C057read" "ENAME"))) (jc_aro10 (list "C058entget" ff)) (if (and (/= ff nil) (jc_aro10 (list "C059listp" ff))) ff nil))))) (if (/= $rr nil) (setq;|a000|;
	 $rr (cdr (jc_aro10 (list "C060assoc" it00 $rr))))) 
$rr)
;Lib:free
(defun vl_load_com(/ $rr aspc)
 (if (null con_modspace) (progn (vl-load-com) (prompt "\n\n")))
 (setq vlax_true :Vlax-True
       vlax_false :Vlax-False
       kHomeRegistry "HKEY_CURRENT_USER\\Software\\Autodesk\\AutoCAD")
 (setq con_acadapp (vlax-get-acad-object))
 (setq con_acdoc (vla-get-activedocument con_acadapp))
 (setq con_acdocuments (vla-get-Documents (vlax-get-acad-object)))
 (setq con_acdocUtility (vla-get-utility con_acdoc))
 (setq con_modspace (vla-get-modelspace con_acdoc))
 (setq aspc (vla-get-activeSpace con_acdoc))
 (setq con_cespace 
     (if (= aspc 1) (vla-get-modelSpace con_acdoc)
     (if (and (= aspc 0) (= (getvar "CVPORT") 1))
        (vla-get-block (vla-get-activelayout con_acdoc))
     (if (= aspc 0) (vla-get-modelSpace con_acdoc) nil))))
 ;; set a reference to the current model space
)
;Lib:free
 ;;{$R dfn_cad_amain_eof2 T229@:09605}
 (prompt "\ncommand.com: Q2[enter]\n")
;;&amp;lt;/dfn_cad_amain_eof2&amp;gt;



;Lib:free
 
(Setq reaDme.txt "\n
Convert Circle To Polyline on same-positi-
on. 	«zlib=Convert Circle To Polyline on 
same-position.»")

&amp;#26;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 03 Sep 2021 07:52:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10595861#M56074</guid>
      <dc:creator>diagodose2009</dc:creator>
      <dc:date>2021-09-03T07:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10596377#M56075</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;Choose the area, it will select only circles with layername is :55.&lt;BR /&gt;Next step:&lt;BR /&gt;If that circle with diameter Ø3.3--&amp;gt;Out put will be M4(Using Mtext) --&amp;gt;Change&amp;nbsp;Ø3.3 and M4(Mtext)to layername(22)&lt;/P&gt;
&lt;P&gt;If that circle with diameter Ø4.2--&amp;gt;Out put will be M5(Using Mtext) --&amp;gt;Change&amp;nbsp;Ø4.2 and M5(Mtext)to layername(33)&lt;/P&gt;
&lt;P&gt;If that circle with diameter Ø5--&amp;gt;Out put will be M6(Using Mtext) --&amp;gt;Change&amp;nbsp;Ø5 and M6(Mtext)to layername(44)&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here's a slightly different way to go about it, which looks for and counts Circles of each size separately.&amp;nbsp; And it uses plain Text instead of Mtext, which makes the stacking of results easier, the spacing of them being a function of the font of the current Text Style.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun C:TAP (/ ins ss str prior)
  (setq
    cor1 (getpoint "\nCorner of area: ")
    cor2 (getcorner cor1 "\nOpposite corner: ")
    ins (getpoint "\nTop-left Text insertion point: ")
  ); setq
  (foreach case '((1.65 "4" "22") (2.1 "5" "33") (2.5 "6" "44"))
    (if (setq ss (ssget "_w" cor1 cor2 (list '(0 . "CIRCLE") '(8 . "55") (cons 40 (car case)))))
      (progn ; then
        (setq str (strcat (itoa (sslength ss)) "-M" (cadr case)))
        (command "_.text")
        (if prior (command "" str) (command "_tl" ins 6 0 str)); &amp;lt;-- height in sample drawing
        (command  "_.chprop" ss (entlast) "" "_layer" (caddr case) "")
        (setq prior T)
      ); progn
    ); if
  ); foreach
  (princ)
); defun&lt;/LI-CODE&gt;
&lt;P&gt;It could have a text Style specified, and the height could be calculated based on something, if it shouldn't always be the same as in the sample drawing.&amp;nbsp; And it could have command-echoing suppressed, and the other usual enhancements.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 11:45:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10596377#M56075</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-03T11:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597292#M56076</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;Thank you so much for your time but it seem does not work correctly?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="moza2020_0-1630683496721.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961016iE42BAAC3980D91C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_0-1630683496721.png" alt="moza2020_0-1630683496721.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 15:39:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597292#M56076</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-03T15:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597305#M56077</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/565193"&gt;@diagodose2009&lt;/a&gt;&amp;nbsp;I really appreciate your help but it errors.&amp;nbsp;(no function definition: nil)&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="moza2020_0-1630683729689.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961022i9D65206B06A52EB6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_0-1630683729689.png" alt="moza2020_0-1630683729689.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 15:42:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597305#M56077</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-03T15:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597320#M56078</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;Thank you very much for your support. It basically solve my problem but the text is overlap. It will be great if text is separated.&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="moza2020_0-1630684082645.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961023iFC56AB8E74F5FA52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_0-1630684082645.png" alt="moza2020_0-1630684082645.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 15:48:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597320#M56078</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-03T15:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597384#M56079</link>
      <description>&lt;P&gt;I must say I'm completely baffled by your code.&amp;nbsp; What could possibly be the purpose of having &lt;EM&gt;anything&lt;/EM&gt; in it about ModeMacro, or the VIEWCTR System Variable, or the Registry, or converting a Circle to a Polyline, or values of pi to &lt;EM&gt;far more decimal places&lt;/EM&gt; than AutoCAD is capable of using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just on that last item, as irrelevant as it seems to the question at hand, consider this, using your setting of pi to &lt;FONT color="#000000"&gt;&lt;STRONG&gt;35&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;(!) decimal places:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(setq test 3.14159265358979323846264338327950288)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(rtos test 2 &lt;STRONG&gt;20&lt;/STRONG&gt;)&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;&lt;EM&gt;; &amp;lt;-- even if asking to see only &lt;STRONG&gt;20&lt;/STRONG&gt;&amp;nbsp;of those decimal places, it returns:&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;"3.141592653589793"&lt;/FONT&gt;&lt;/STRONG&gt; &lt;EM&gt;&lt;FONT color="#3366FF"&gt;; &amp;lt;-- &lt;STRONG&gt;16&lt;/STRONG&gt; significant figures is &lt;STRONG&gt;all AutoCAD can ever know&lt;/STRONG&gt; about any number&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 16:30:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597384#M56079</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-03T16:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597403#M56080</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... It basically solve my problem but the text is overlap. It will be great if text is separated.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It doesn't overlap them for me:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kent1Cooper_0-1630685958545.png" style="width: 279px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961030iA711C656830D6C8A/image-dimensions/279x177?v=v2" width="279" height="177" role="button" title="Kent1Cooper_0-1630685958545.png" alt="Kent1Cooper_0-1630685958545.png" /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kent1Cooper_0-1630686783461.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961036iEA7BB5A44581EABD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kent1Cooper_0-1630686783461.png" alt="Kent1Cooper_0-1630686783461.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 16:33:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597403#M56080</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-03T16:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597481#M56081</link>
      <description>&lt;LI-CODE lang="general"&gt;(Defun c:TAP ( / datalist txtHt ss pt e d f)
;;	 You can add to this list	;;
(setq datalist '((3.3 0 "22" "-M4")
		 (4.2 0 "33" "-M5")
		 (5.0 0 "44" "-M6"))
      txtHt (getvar "TEXTSIZE")
)

(if (and
      (setq ss (ssget '((0 . "CIRCLE")(8 . "55"))))
      (setq pt (getpoint "\nPick Mtext location"))
      )
  (progn
	  (repeat (setq i (sslength ss))
	    (setq e (ssname ss (Setq i (1- i))))
	    (setq d (GetPropertyValue e "Diameter"))
	    (if (setq f (assoc d datalist))
	      	(setq datalist (subst
				 (append (list d (1+ (cadr f))) (cddr f))
				 f datalist)))
	    )
    (foreach itm datalist
      (and  (/= (cadr itm) 0)
	    (entmakex (list (cons 0 "MTEXT") (cons 100 "AcDbEntity")
	                  (cons 100 "AcDbMText") (cons 8 (caddr itm))
	                  (cons 10 pt)'(71 . 1)'(72 . 5) (Cons 40 txtHt)
	                  (cons 1 (strcat (itoa (Cadr itm)) (last itm))))
			    )		      )
	    (setq pt (polar pt (* pi 1.5) (* 1.666 txtHt)))
		)
	      )
	  )
(princ)
  )&lt;/LI-CODE&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 16:49:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597481#M56081</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-09-03T16:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597532#M56082</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... the text is overlap. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It occurs to me that you could have that very problem if something was mis-copied, specifically if the &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;prior&lt;/FONT&gt; variable name was not spelled the same everywhere.&amp;nbsp; Is that a possibility?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 17:08:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10597532#M56082</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-03T17:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598447#M56083</link>
      <description>&lt;P&gt;If you see any ACET- error messages it could be that the correct .ARX library program has not been loaded, look for acetutil.arx and use appload etc. Or change the acet-ss-get-filter to a normal ssget syntax.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Acet functions are extra functionality another is DOSLIB. Google Acet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Sep 2021 01:55:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598447#M56083</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-09-04T01:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598538#M56084</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;&amp;nbsp;(command "_tl" ins 20 0 str))--&amp;gt;(command "_MC" ins 20 0 str)) and It works for me now. Thank you very much for your help!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="moza2020_0-1630726090788.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961228i9C9F323FA48854A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_0-1630726090788.png" alt="moza2020_0-1630726090788.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Sep 2021 03:28:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598538#M56084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-04T03:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598547#M56085</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;Yourlisp OK now, But circle should be change layer follow the Text. Thank you one again for your help.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="moza2020_0-1630726430194.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961229i54662F04BD933B80/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_0-1630726430194.png" alt="moza2020_0-1630726430194.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Sep 2021 03:35:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598547#M56085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-04T03:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598551#M56086</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/565193"&gt;@diagodose2009&lt;/a&gt;&amp;nbsp;Yourlisp OK now, But circle should be change layer follow the Text. Thank you one again for your help.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="moza2020_1-1630726604625.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961231i6C4527612BB6C400/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_1-1630726604625.png" alt="moza2020_1-1630726604625.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Sep 2021 03:37:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598551#M56086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-04T03:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598553#M56087</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;Yourlisp is good, But circle should be change layer follow the Text. Thank you&amp;nbsp; for your help.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="moza2020_0-1630726685528.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/961232iF5984DB4F0D63BAD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moza2020_0-1630726685528.png" alt="moza2020_0-1630726685528.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Sep 2021 03:38:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598553#M56087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-04T03:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598575#M56088</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/565193"&gt;@diagodose2009&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I really appreciate for your time supporting me.Thank you once again!&lt;/P&gt;</description>
      <pubDate>Sat, 04 Sep 2021 04:03:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598575#M56088</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-04T04:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598583#M56089</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;Yourlisp is good, But circle should be change layer follow the Text. Thank you&amp;nbsp; for your help.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Oops i did not even notice that&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(Defun c:TAP ( / datalist txtHt ss pt e d f)
;;	 You can add to this list	;;
(setq datalist '((3.3 0 "22" "-M4")
		 (4.2 0 "33" "-M5")
		 (5.0 0 "44" "-M6"))
      txtHt (getvar "TEXTSIZE")
)

(if (and
      (setq ss (ssget '((0 . "CIRCLE")(8 . "55"))))
      (setq pt (getpoint "\nPick Mtext location"))
      )
  (progn
	  (repeat (setq i (sslength ss))
	    (setq e (ssname ss (Setq i (1- i))))
	    (setq d (GetPropertyValue e "Diameter"))
	    (if (setq f (assoc d datalist))
	      (progn		
	      	(setq datalist (subst
				 (append (list d (1+ (cadr f))) (cddr f))
				 f datalist))
		(entmod (subst (cons 8 (caddr f))(assoc 8 (setq ent (entget e))) ent))
			)
		)
	    )
    (foreach itm datalist
      (and  (/= (cadr itm) 0)
	    (entmakex (list (cons 0 "MTEXT") (cons 100 "AcDbEntity")
	                  (cons 100 "AcDbMText") (cons 8 (caddr itm))
	                  (cons 10 pt)'(71 . 1)'(72 . 5) (Cons 40 txtHt)
	                  (cons 1 (strcat (itoa (Cadr itm)) (last itm))))
			    )		      )
	    (setq pt (polar pt (* pi 1.5) (* 1.666 txtHt)))
		)
	      )
	  )
(princ)
  )&lt;/LI-CODE&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Sat, 04 Sep 2021 04:09:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10598583#M56089</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-09-04T04:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10611344#M56090</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;How can I change yourlisp from "W" to&amp;nbsp;"_:L". I want to choose the object. Window(W) may be sometimes It will include the circle that I do not want to select.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 15:55:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10611344#M56090</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-09T15:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select the circle &amp; output to Mtext!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10611406#M56091</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;How can I change yourlisp from "W" to&amp;nbsp;"_:L". I want to choose the object. Window(W) may be sometimes It will include the circle that I do not want to select.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It would require changing the approach entirely, to something similar to what is already covered in [for example] the Solution from&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;.&amp;nbsp; That finds all Circles among selected objects on the right Layer, anywhere, allowing for removal, etc., and steps through them to categorize them by size.&amp;nbsp; Mine searches in a specified area, separately for each size of Circle, so it doesn't need to step through the selection and look at each Circle.&amp;nbsp; It could be changed to let you select [and remove from the selection], but you would need to do it three times, once for each size of Circle.&amp;nbsp; So I suggest you use their solution -- adjusting mine would end up similar to theirs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, why "_:L"?&amp;nbsp; That is to prevent selection of things on locked Layers, but the selections already limit it to those on Layer "55", which for your purposes wouldn't be locked anyway.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 16:23:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-the-circle-amp-output-to-mtext/m-p/10611406#M56091</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-09T16:23:07Z</dc:date>
    </item>
  </channel>
</rss>

