<?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: IF CONDITION in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7942604#M105921</link>
    <description>&lt;P&gt;first i'd really to thank you for your answer and i record a video to explain what i want - and ctrl+f which means when use it at text for functions&lt;/P&gt;&lt;P&gt;here's the link of video&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container"&gt;&lt;IFRAME width="640" height="590" src="https://screencast.autodesk.com/Embed/Timeline/08f8fe8b-90e2-4259-b02d-32fd3f453d5d" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Apr 2018 19:07:35 GMT</pubDate>
    <dc:creator>muhamed_ragab92</dc:creator>
    <dc:date>2018-04-18T19:07:35Z</dc:date>
    <item>
      <title>IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7941380#M105919</link>
      <description>&lt;P&gt;I WANT TO KNOW , HOW CAN I MAKE IF CONDITION TO COMPARE BETWEEN TWO ISSUES AND SELECT THE RESULT IN TEXT ? I KNOW SOME FEATURE FOR CTRL+F BUT I CANT MAKE IF CONDITION&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 13:27:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7941380#M105919</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-04-18T13:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7941522#M105920</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4337907"&gt;@muhamed_ragab92&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I WANT TO KNOW , HOW CAN I MAKE IF CONDITION TO COMPARE BETWEEN TWO ISSUES AND SELECT THE RESULT IN TEXT ? I KNOW SOME FEATURE FOR CTRL+F BUT I CANT MAKE IF CONDITION&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I'm not sure exactly what you mean. &amp;nbsp;Ctrl+F toggles running Object Snap on or off, and has nothing to do with (if) tests or Text. &amp;nbsp;What does it mean to "select the result in text?" &amp;nbsp;The word "select" is usually about picking already-drawn objects in the drawing. &amp;nbsp;Do you mean to &lt;EM&gt;draw&lt;/EM&gt;&amp;nbsp; some Text in the drawing as the result of the (if) test?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An (if) function doesn't "compare between two issues," but performs a&amp;nbsp;test, and if it returns anything other than nil, does what is called for by its 'then' expression, or if it returns nil, its 'else' expression. &amp;nbsp;But the test it performs could include two test within it, with an (and) function -- if test 1 &lt;EM&gt;and&lt;/EM&gt;&amp;nbsp; test 2 &lt;EM&gt;both&lt;/EM&gt;&amp;nbsp; return something other than nil can be combined into one 'test' expression. &amp;nbsp;But it's still not really "comparing" the issues, but checking each one by itself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of, if you mean you want the User to select between two [or more] choices or options &lt;EM&gt;by entering text&lt;/EM&gt;&amp;nbsp; [typing something] to make the choice, this is how that is usually done:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(initget "Yes No")&lt;/P&gt;
&lt;P&gt;(setq option (getkword "\nDo you want to do this [Yes/No] &amp;lt;N&amp;gt;: "))&lt;/P&gt;
&lt;P&gt;(if (= option "Yes")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; (&lt;FONT color="#999999"&gt;... do whatever it is ...&lt;/FONT&gt;)&lt;EM&gt;&lt;FONT color="#33CCCC"&gt;; 'then' expression&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; (&lt;FONT color="#999999"&gt;... do something else ...&lt;/FONT&gt;)&lt;EM&gt;&lt;FONT color="#33CCCC"&gt;; 'else' expression&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;); end if&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The User can either type in the Y or N [upper- or lower-case] or the whole words, or in newer versions pick the option inside the prompt, and (getkword) will return the whole word.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you include more than two options, &lt;FONT color="#000000"&gt;(cond)&lt;/FONT&gt; would be a better function than (if) for doing what is wanted for the option the User choses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some more explanation of what the conditions are that you want to compare, and how Text fits in, would be helpful.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 14:03:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7941522#M105920</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-04-18T14:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7942604#M105921</link>
      <description>&lt;P&gt;first i'd really to thank you for your answer and i record a video to explain what i want - and ctrl+f which means when use it at text for functions&lt;/P&gt;&lt;P&gt;here's the link of video&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container"&gt;&lt;IFRAME width="640" height="590" src="https://screencast.autodesk.com/Embed/Timeline/08f8fe8b-90e2-4259-b02d-32fd3f453d5d" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 19:07:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7942604#M105921</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-04-18T19:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7950501#M105922</link>
      <description>&lt;P&gt;Kent1cooper,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the video, it looks like muhamed_ragab92 needs a lisp routine that&lt;/P&gt;&lt;P&gt;1. Selects a source object to determine the amp rating of the circuit breaker, then&lt;/P&gt;&lt;P&gt;2. Selects a target object to replace the existing text with a pre-determined Cable size on the incoming line side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If 160A use Cable 3x95&lt;/P&gt;&lt;P&gt;if 250A use Cable 3x150&lt;/P&gt;&lt;P&gt;if 1000A use Cable 3x240&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Apr 2018 09:26:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7950501#M105922</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-04-22T09:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7950868#M105923</link>
      <description>Yes exactly thats what i need it and can i edit in it&lt;BR /&gt;</description>
      <pubDate>Sun, 22 Apr 2018 17:40:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7950868#M105923</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-04-22T17:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7952506#M105924</link>
      <description>&lt;P&gt;It looks to me as if he's trying to create a conditional field (hence: CTRL+F).&lt;/P&gt;&lt;P&gt;So, he should be looking into DIESEL expressions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The next example shows a different name (or default text) based on the user logged on.&lt;/P&gt;&lt;P&gt;However, that's as far as my own understanding of DIESEL goes, so i can't say IF and/or how to do it for the given case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;FONT face="Courier New"&gt;%&amp;lt;\AcDiesel &lt;BR /&gt;$(if,$(eq,$(getvar,loginname),"Jeff"),"jeff[at]cadstudio.cz",&lt;BR /&gt;$(if,$(eq,$(getvar,loginname),"John"),"john[at]cadstudio.cz",&lt;BR /&gt;$(if,$(eq,$(getvar,loginname),"Mary"),"mary[at]cadstudio.cz",&lt;BR /&gt;"cannot detect e-mail address")))&lt;BR /&gt;&amp;gt;%&lt;BR /&gt;&lt;BR /&gt;source: http://www.cadforum.cz/cadforum_en/conditional-text-fields-in-autocad-tip10239&lt;BR /&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT face="Courier New"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Perhaps using a lisp to set the text, without using fields and stuff might be better, but i'll leave that to the experts &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 13:18:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7952506#M105924</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-04-23T13:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7954090#M105925</link>
      <description>&lt;P&gt;roland.r71,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought it was something complex using the dialog boxes and fields, but i believe it was used to express the logic concept via coding.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 22:09:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7954090#M105925</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-04-23T22:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7954225#M105926</link>
      <description>&lt;P&gt;Mahumad.ragab92,&lt;/P&gt;&lt;P&gt;Try this routine...&lt;/P&gt;&lt;PRE&gt;; Cables - 4/23/2018
; Scott Uyehara
;
;This routine will ask for two entities, source and target:
;  Source Breaker Amps
;  Target Cable Text
;
; scan text for numbers and stop at first letter or end of text
; generate Cabletext result based on Amp value
; substitue old value for new, DXF 1 value
;
(defun c:cables (/ a ed text1 b edb old c1 ltr pren1 pren2 div1 cmdech)
;  global values: txta, textcables
;
;-- stop the UNDO command
(setq cmdech (getvar "cmdecho"))
(setvar "cmdecho" 0)
(command "undo" "group")
(command "undo" "end")
(setvar "cmdecho" cmdech)

  ;get source &amp;amp; target
  (setq a (entsel "Select Breaker Amps Text &amp;lt;or Enter&amp;gt;: "))
  (if (= a nil)
    (setq text1 (strcase (getstring "\nEnter Breaker AMPS or S=Spare: ")))
    (progn
      (setq ed (entget (car a)))
      (setq text1 (cdr (assoc 1 ed)))
      )
    );if = a nil

  (setq b (entsel "Select Cable text: "))
  (setq edb (entget (car b)))
  (setq old (assoc 1 edb))
  
  
;filter text string
;rebuild string text1 --&amp;gt; txta
  (setq c1 0)
  (setq txta "")
  (while (&amp;lt;= c1 (strlen text1))
    (setq c1  (+ c1 1))
    (setq ltr (substr text1 c1 1))
    (if (and (&amp;gt;= ltr "0") (&amp;lt;= ltr "9")) (setq txta (strcat txta ltr))); keep it when 0-9
    (if (&amp;gt; ltr "9") (setq c1 (+ 1 (strlen text1))))
  );while
  (prompt "\nAMPs: ")(princ txta)
  
  ;output No Match is nonthing matches
  (setq textcables "NO MATCH")
  (setq pren1 (chr 40))
  (setq pren2 (chr 41))
  (setq div1 (chr 47))
  (if (= txta "150") (setq textcables (strcat "CABLE" pren1 "3x95+50" pren2 "mm2,CU" div1 "XLEP" div1 "PVC")))
  (if (= txta "250") (setq textcables (strcat "CABLE" pren1 "3x150+70" pren2)))
  (if (= txta "630") (setq textcables (strcat "CABLE" pren1 "3x240+120" pren2)))
  (if (= txta "1000") (setq textcables (strcat "CABLE" pren1 "3x240+120" pren2)))
  (if (= txta "S") (setq textcables "SPARE"))
  
  (setq new (cons 1 textcables))
  (setq edb (subst new old edb))
  (entmod edb)
(prompt "\nUse Cables: ")
(prompt textcables)
(princ) 
); defun&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Apr 2018 00:19:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7954225#M105926</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-04-24T00:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7954724#M105927</link>
      <description>&lt;P&gt;its worked but in text only when c.b amp is text not attribute , can we add attribute to the script ?? and i will record video for what done with this routine&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 07:08:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7954724#M105927</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-04-24T07:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7979846#M105928</link>
      <description>Reminder for issue&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sent from my iPhone</description>
      <pubDate>Fri, 04 May 2018 10:55:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7979846#M105928</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-05-04T10:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7980639#M105929</link>
      <description>&lt;P&gt;muhamed_ragab92,&lt;/P&gt;&lt;P&gt;Thanks for the reminder.&lt;/P&gt;&lt;P&gt;I tested the code and noticed that the Spare option was not working.&lt;/P&gt;&lt;P&gt;Change the variable txta to text1, (if (= txta "S") (setq textcables "SPARE"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will adjust the code for attribute detection.&lt;/P&gt;&lt;P&gt;Scott U.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 15:40:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7980639#M105929</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-05-04T15:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7980917#M105930</link>
      <description>Okay thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sent from my iPhone</description>
      <pubDate>Fri, 04 May 2018 17:28:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7980917#M105930</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-05-04T17:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7982214#M105931</link>
      <description>&lt;P&gt;muhamed_ragab92,&lt;/P&gt;&lt;P&gt;Try this routine with attribute detection.&lt;/P&gt;&lt;P&gt;Its not tested (due to computer problems), but lets see how it goes.&lt;/P&gt;</description>
      <pubDate>Sat, 05 May 2018 14:54:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7982214#M105931</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-05-05T14:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7984012#M105932</link>
      <description>&lt;P&gt;thanks you , i tried this routine today but the result when select amp c.b 250a or any others is no match at cable&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 08:13:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7984012#M105932</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-05-07T08:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7985485#M105933</link>
      <description>&lt;P&gt;muhamed_ragab92,&lt;/P&gt;&lt;P&gt;I made corrections.&amp;nbsp; See attached files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, change the attribute tag names to match your drawing.&lt;/P&gt;&lt;P&gt;Source block with attribute tag "amps"&lt;/P&gt;&lt;P&gt;Target block with attribute tag "linecables"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;;predefine tag name&lt;BR /&gt;(setq tagname "amps")&lt;BR /&gt;(setq tagnameB "linecables")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 19:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7985485#M105933</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-05-07T19:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7989180#M105934</link>
      <description>&lt;P&gt;its worked but i modify in the routine in 250A , 630A and 1000A because type of isolation appeared only 150A - and modify tagname to AT to suitable with me , can we add the feature to the lisp which i can select many several of breakers and after that select the texts i know its more advanced in the routine but can we add it? - attached file is screenshot from the result and the modified lisp - thanks&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 07:10:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7989180#M105934</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-05-09T07:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7989346#M105935</link>
      <description>&lt;P&gt;muhamed_ragab92,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good,&amp;nbsp; modified it to work for the other amp values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see that tagnameB (used for cabletext) was not changed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that because it is always pain text?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for the advanced feature to select a group of AT breakers and the matting cable text,&lt;/P&gt;&lt;P&gt;Please post a sample drawing.&amp;nbsp; I may have more questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 08:25:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7989346#M105935</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-05-09T08:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7992222#M105936</link>
      <description>&lt;P&gt;&lt;SPAN&gt;yes ,&amp;nbsp; it is always pain text for me - it's not find on anywhere - i ask if we can add it to select by mouse many of breakers at once and and select after that the pain texts once - convert directly all texts to which write the routine&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 08:39:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7992222#M105936</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-05-10T08:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7994232#M105937</link>
      <description>&lt;P&gt;muhamed_ragab92,&lt;/P&gt;&lt;P&gt;Ok.&amp;nbsp; Thanks great.&amp;nbsp; Its a little more involved.&amp;nbsp; I plan to rewrite the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 00:34:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7994232#M105937</guid>
      <dc:creator>Scottu2</dc:creator>
      <dc:date>2018-05-11T00:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: IF CONDITION</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7995140#M105938</link>
      <description>Thanks , i appreciate that&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sent from my iPhone</description>
      <pubDate>Fri, 11 May 2018 11:12:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/if-condition/m-p/7995140#M105938</guid>
      <dc:creator>muhamed_ragab92</dc:creator>
      <dc:date>2018-05-11T11:12:23Z</dc:date>
    </item>
  </channel>
</rss>

