<?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: Textmask Help in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8309425#M138952</link>
    <description>&lt;P&gt;&lt;SPAN class="login-bold"&gt;Thanks&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365" target="_self"&gt;BeekeeCZ&lt;/A&gt;. Appreciate your quick response..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I applied your reverse repeat option and the code worked however for couple of texts. After processing few text it stopped midway with an error "1 not parallel to UCS". To identify I modified the code (this time without parenthesis &lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt; ) to see what causing this error and came to know one text is not aligned/parallel to ucs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(defun c:das(/ sset i e)
 (setvar "cmdecho" 0)
  	(load "textmask")
	(if (setq sset (ssget "_X" '((0 . "MTEXT,TEXT") (410 . "Model"))))
		(repeat (setq i (sslength sset))
		(setq e (ssname sset (setq i (1- i))))
		(command "Zoom" "Object" e pause)
		(acet-textmask-make-wipeout e 0.2) )
	)
  (command "_.wipeout" "_frames" "_off") ;or "_on" if desired
 (setvar "cmdecho" 1)
 (Princ)
 )&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Now not sure how to address this problem as textmask is diff. routine and therefor error handling can't be implemented there. Can we have a error handling in this routine to skip any problematic text &amp;amp; process remaining texts? if yes, how?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyways learned few more new things thanks to you.&amp;nbsp;&lt;img id="heart" class="emoticon emoticon-heart" src="https://forums.autodesk.com/i/smilies/16x16_heart.png" alt="Heart" title="Heart" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Oct 2018 09:33:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-10-03T09:33:29Z</dc:date>
    <item>
      <title>Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788792#M138943</link>
      <description>&lt;P&gt;I need help figuring out what's not right with this routine&lt;/P&gt;&lt;P&gt;I'm trying to create a textmask but it's not working&lt;/P&gt;&lt;P&gt;If I don't use the routine and draw some MTEXT, then type "TEXTMASK" and type "L" for last; the mask works fine, but not in the routine&lt;/P&gt;&lt;P&gt;I'm hoping someone can let me know what I'm doing wrong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(SETQ P1(GETPOINT "\n&amp;lt;center point&amp;gt;: "))&lt;BR /&gt;(SETQ TAGNUM(GETINT "\n&amp;lt;enter tag number&amp;gt;: "))&lt;BR /&gt;(COMMAND "CIRCLE" P1 "4")(SETQ G1(ENTLAST))&lt;BR /&gt;(COMMAND "MTEXT" P1 "H" "4" "R" "0" "J" "MC" "W" "0" TAGNUM "")(SETQ G2(ENTLAST))&lt;BR /&gt;(COMMAND "TEXTMASK" "L" "" "")&lt;BR /&gt;(SETQ G3(SSADD))(SSADD G1 G3)(SSADD G2 G3)&lt;BR /&gt;(SETQ BNUM(GETVAR "USERI5"))&lt;BR /&gt;(SETQ TGNAME(STRCAT "_Tag"(ITOA BNUM)))&lt;BR /&gt;(SETVAR "USERI5"(+ BNUM 1))&lt;BR /&gt;(COMMAND "BLOCK" TGNAME P1 G3 "")&lt;BR /&gt;(COMMAND "-INSERT" TGNAME P1 "" "" 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Larry&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 14:03:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788792#M138943</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T14:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788845#M138944</link>
      <description>&lt;P&gt;It does not work like that. TEXTMASK is a "command" from Express Tools. It behaves like any other LSP.&lt;BR /&gt;&lt;BR /&gt;(see c:\Program Files\Autodesk\AutoCAD 201x\Express\textmask.lsp )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Look up on the web to find some other way make mask.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 14:27:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788845#M138944</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2015-08-26T14:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788949#M138945</link>
      <description>&lt;P&gt;Since TEXTMASK is an Express Tool, it can't be used in a (command) function, which can only recognize native AutoCAD command names. &amp;nbsp;Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; (load "textmask")&lt;FONT color="#00CCFF"&gt;; [somewhere before you use it, in case it hasn't yet been used in the current drawing]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and later, to make the mask, instead of in (command), assuming you do it similarly right after drawing the thing to have the mask applied, try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; (acet-textmask-make-wipeout (entlast) 0.2)&lt;FONT color="#00CCFF"&gt;; &amp;lt;-- EDIT mask type &amp;amp; offset distance as desired&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#000000"&gt;You may also want to incorporate, somewhere, something like this:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp; (command "_.wipeout" "_frames" "_off")&lt;FONT color="#00CCFF"&gt;; &amp;lt;--&amp;nbsp;or "_on"&amp;nbsp;if desired&lt;/FONT&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:17:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788949#M138945</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2015-08-26T15:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788957#M138946</link>
      <description>&lt;P&gt;Don't use textmask with mtext. &amp;nbsp;Select the text and in the properties palette, select background mask and turn it on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a routine that works in this thread. See the attachment on the original poster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-and-fit-the-background-mask-in-mtext/td-p/3740383" target="_blank"&gt;http://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-and-fit-the-background-mask-in-mtext/td-p/3740383&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:15:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5788957#M138946</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2015-08-26T15:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5789065#M138947</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Don't use textmask with mtext...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;1+&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Hi bdsmls,&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="hps alt-edited"&gt;I would suggest to change your code, instead of&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;(COMMAND "TEXTMASK" "L" "" "")&lt;/PRE&gt;
&lt;P&gt;try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vlax-put (vlax-ename-&amp;gt;vla-object G2) 'backgroundfill 1)
(setq ent (entget G2)
      ent (subst (cons 45 1.1) (assoc 45 ent) ent);change 1.1 if &lt;SPAN class="hps alt-edited"&gt;necessary&lt;/SPAN&gt;
      ent (subst (cons 421 256) (assoc 421 ent) ent)
)
(entmod ent)&lt;/PRE&gt;
&lt;P&gt;(vl-load-com), if Visual LISP extensions not loaded &lt;SPAN class="hps alt-edited"&gt;yet&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps, &lt;BR /&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 15:52:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5789065#M138947</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2015-08-26T15:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5789111#M138948</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Don't use textmask with mtext. &amp;nbsp;Select the text and in the properties palette, select background mask and turn it on.&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;[... in new-enough versions -- it hasn't always been an option&amp;nbsp;....]&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 16:11:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5789111#M138948</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2015-08-26T16:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5789147#M138949</link>
      <description>&lt;P&gt;Thanks Kent&lt;/P&gt;&lt;P&gt;As always your solution worked perfectly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2015 16:20:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/5789147#M138949</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-26T16:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8309089#M138950</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Since TEXTMASK is an Express Tool, it can't be used in a (command) function, which can only recognize native AutoCAD command names. &amp;nbsp;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; (load "textmask")&lt;FONT color="#00CCFF"&gt;; [somewhere before you use it, in case it hasn't yet been used in the current drawing]&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and later, to make the mask, instead of in (command), assuming you do it similarly right after drawing the thing to have the mask applied, try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; (acet-textmask-make-wipeout (entlast) 0.2)&lt;FONT color="#00CCFF"&gt;; &amp;lt;-- EDIT mask type &amp;amp; offset distance as desired&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#000000"&gt;You may also want to incorporate, somewhere, something like this:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp; (command "_.wipeout" "_frames" "_off")&lt;FONT color="#00CCFF"&gt;; &amp;lt;--&amp;nbsp;or "_on"&amp;nbsp;if desired&lt;/FONT&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;I know its a little old thread but still hoping to get some help...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I also have similar&amp;nbsp;problem as that of&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/524323" target="_self"&gt;bdsmls&lt;/A&gt;&amp;nbsp;but in my case I want to text mask all the mtext available in model. I have written small routine (I'm novice) to create the selection filter (which seems to be working fine) but note sure how to use that selection set further..&amp;nbsp;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://forums.autodesk.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Below is the code:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;(defun c:test(/ sset )
 (setvar "cmdecho" 0)
  	(load "textmask")
	(setq sset (ssget "_X" '((0 . "MTEXT,TEXT") (410 . "Model") ))) ;Select mtext from model only
	(acet-textmask-make-wipeout ( sset ) 0.2)
	(command "_.wipeout" "_frames" "_off")
 (setvar "cmdecho" 1)
 (Princ)
 )&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;I have even tried making selection set global instead of local since textmask is diff. lisp routine but didn't get the results..&lt;img id="smileymad" class="emoticon emoticon-smileymad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-mad.png" alt="Smiley Mad" title="Smiley Mad" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Would really appreciate any help&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 05:15:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8309089#M138950</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-03T05:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8309204#M138951</link>
      <description>&lt;P&gt;hello&amp;nbsp;@Anonymous, good try!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've made a quick look on your code, there are two problems.&lt;/P&gt;
&lt;P&gt;First, minor syntax problem, is since you're replacing function (entlast) with sset variable, you shouldn't use the parenthesis (acet-textmask-make-wipeout sset 0.2). But anyway its wrong because...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...the second problem, big one, is problem that subfunction requires to be supplied with single entity, not whole selection set.&lt;/P&gt;
&lt;P&gt;If you feeling about to learn how to step thru the selection set to get entity names, look&amp;nbsp;&lt;A href="http://www.lee-mac.com/selsetprocessing.html" target="_blank"&gt;HERE&lt;/A&gt;&amp;nbsp;for many examples how to do that - most favorite method around here is 2a.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, look below, where I've rewrote to code... (usage of method 2a)&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#FFFFFF"&gt;  (if (setq sset (ssget "_X" '((0 . "MTEXT,TEXT") (410 . "Model"))))
    (repeat (setq i (sslength sset))
      (acet-textmask-make-wipeout (ssname sset (setq i (1- i))) 0.2)))&lt;/FONT&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 03 Oct 2018 07:14:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8309204#M138951</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2018-10-03T07:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8309425#M138952</link>
      <description>&lt;P&gt;&lt;SPAN class="login-bold"&gt;Thanks&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365" target="_self"&gt;BeekeeCZ&lt;/A&gt;. Appreciate your quick response..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I applied your reverse repeat option and the code worked however for couple of texts. After processing few text it stopped midway with an error "1 not parallel to UCS". To identify I modified the code (this time without parenthesis &lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt; ) to see what causing this error and came to know one text is not aligned/parallel to ucs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(defun c:das(/ sset i e)
 (setvar "cmdecho" 0)
  	(load "textmask")
	(if (setq sset (ssget "_X" '((0 . "MTEXT,TEXT") (410 . "Model"))))
		(repeat (setq i (sslength sset))
		(setq e (ssname sset (setq i (1- i))))
		(command "Zoom" "Object" e pause)
		(acet-textmask-make-wipeout e 0.2) )
	)
  (command "_.wipeout" "_frames" "_off") ;or "_on" if desired
 (setvar "cmdecho" 1)
 (Princ)
 )&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Now not sure how to address this problem as textmask is diff. routine and therefor error handling can't be implemented there. Can we have a error handling in this routine to skip any problematic text &amp;amp; process remaining texts? if yes, how?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyways learned few more new things thanks to you.&amp;nbsp;&lt;img id="heart" class="emoticon emoticon-heart" src="https://forums.autodesk.com/i/smilies/16x16_heart.png" alt="Heart" title="Heart" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 09:33:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8309425#M138952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-03T09:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8311138#M138953</link>
      <description>&lt;P&gt;It might be possible to exclude them. Post some dwg with some good and bad texts to test.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 20:19:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8311138#M138953</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2018-10-03T20:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8311709#M138954</link>
      <description>&lt;P&gt;Wish I could upload file here for testing but due to my company's policy, it can't be uploaded.. sorry&amp;nbsp;&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Btw I tried to textmask the problematic text directly from express tools and it failed there too.. so the problem is not with the routine we have created but with the text. The only thing above routine lags is it can't skip the problematic text &amp;amp; move to next text. (smillar to excel VBA "On Error Resume Next")&lt;/P&gt;</description>
      <pubDate>Thu, 04 Oct 2018 04:26:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8311709#M138954</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-04T04:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Textmask Help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8312102#M138955</link>
      <description>&lt;P&gt;You can't upload dwg with couple of texts with non meaningful content just to see its definition?? Geee....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Whatever. Try this.... but I don't use such thing.&lt;/P&gt;
&lt;P&gt;(ssget "_X" '((0 . "MTEXT,TEXT") (410 . "Model") (210 0 0 1)))&lt;/P&gt;</description>
      <pubDate>Thu, 04 Oct 2018 08:23:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/textmask-help/m-p/8312102#M138955</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2018-10-04T08:23:04Z</dc:date>
    </item>
  </channel>
</rss>

