<?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: Change All font in Text Style Manager in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10629763#M116589</link>
    <description>&lt;P&gt;I have the same issue but I would like to solve it with VBA.&lt;/P&gt;&lt;P&gt;How can I change the Standard Style Font to Arial ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Fri, 17 Sep 2021 14:24:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-09-17T14:24:35Z</dc:date>
    <item>
      <title>Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286166#M116573</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have received some files which have numerous style created in text style manager. and it have "txt.shx" as font. But I need to change all this to Arial. Is there any lisp command to do this?.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Shameem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 06:11:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286166#M116573</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-09T06:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286216#M116574</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try This..&lt;/P&gt;&lt;PRE&gt;(while (setq st (tblnext "STYLE" (not st)))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq st (entget(tblobjname "STYLE" (cdr(assoc 2 st)))))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (entmod (subst '(3 . "Arial")(assoc 3 st) st))
)&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Aug 2017 06:44:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286216#M116574</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-09T06:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286261#M116575</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....But I need to change&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt; all&lt;/FONT&gt; &lt;/STRONG&gt;this to Arial. Is there any lisp command to do this?.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Shameem&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you're going to do that, You might as well use one teststyle for all your text/mtext/attributes.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyways&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(setq ArialFont (strcat (getenv "systemroot") "\\Fonts\\Arial.ttf"))

(vlax-for DwgTextSTyle (vla-get-textstyles  (vla-get-ActiveDocument (vlax-get-acad-object)))
	
      	(and    (vlax-write-enabled-p DwgTextSTyle)
            	(vlax-property-available-p DwgTextSTyle 'Fontfile)
            	(vlax-put DwgTextSTyle 'Fontfile ArialFont)
                      )
      )&lt;/PRE&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 07:09:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286261#M116575</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-08-09T07:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286910#M116576</link>
      <description>&lt;P&gt;If there are differences in things like width factor or obliquing angle or other possibilities between different Styles, others' suggestions look appropriate.&amp;nbsp; But if they're all the same in appearance, there's no point in having lots of them, so another thing you could do would be to assign Arial to the "Standard" Style,&amp;nbsp;change all Text/Mtext objects to Standard, and assign it&amp;nbsp;to all Dimension Styles.&amp;nbsp; It could well be fewer steps than going through all Styles and changing the font assigned to each.&amp;nbsp; Then you can PURGE all those numerous Styles from the drawing.&amp;nbsp; That could also be written into an AutoLisp routine, if that sounds like a good approach.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 11:41:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7286910#M116576</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-08-09T11:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288177#M116577</link>
      <description>&lt;P&gt;Hi Kent. please How&amp;nbsp;&lt;SPAN&gt;could to assign Arial to the "Standard" Style, by lisp.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:17:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288177#M116577</guid>
      <dc:creator>devitg</dc:creator>
      <dc:date>2017-08-09T17:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288188#M116578</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(setq ArialFont (strcat (getenv "systemroot") "\\Fonts\\Arial.ttf"))

      (and
            (setq StandardTextSTyle
                       (vla-item (vla-get-textstyles  adoc) "Standard"))
      	    (vlax-write-enabled-p StandardTextSTyle)
            (vlax-property-available-p StandardTextSTyle 'Fontfile)
            (vlax-put StandardTextSTyle 'Fontfile ArialFont)
                      )
&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:23:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288188#M116578</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-08-09T17:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288210#M116579</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/58962"&gt;@devitg&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Kent. please How&amp;nbsp;&lt;SPAN&gt;could to assign Arial to the "Standard" Style, by lisp.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;(command "_.style" "STANDARD" "Arial")&lt;/P&gt;
&lt;P&gt;(while (&amp;gt; (getvar 'cmdactive) 0) (command ""))&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:31:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288210#M116579</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-08-09T17:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288232#M116580</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/58962"&gt;@devitg&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Kent. please How&amp;nbsp;&lt;SPAN&gt;could to assign Arial to the "Standard" Style, by lisp.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;(command "_.style" "STANDARD" "Arial")&lt;/P&gt;
&lt;P&gt;(while (&amp;gt; (getvar 'cmdactive) 0) (command ""))&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I agree, its always good to use command version, Also Mac friendly too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:37:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288232#M116580</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-08-09T17:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288370#M116581</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is some difference in width factor. So it is better to keep the styles and change only the font.&lt;/P&gt;&lt;P&gt;If you write accordingly I can use the lisp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shameem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:20:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288370#M116581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-09T18:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288650#M116582</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is some difference in width factor. So it is better to keep the styles and change only the font.&lt;/P&gt;
&lt;P&gt;If you write accordingly I can use the lisp.&lt;/P&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Does&amp;nbsp;@Anonymous's suggestion in Post 2 not do that?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 19:47:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/7288650#M116582</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-08-09T19:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8637624#M116583</link>
      <description>&lt;P&gt;Apologies for resurrecting a old thread, but what would I exactly do with the code in Post 2?&lt;/P&gt;
&lt;P&gt;It's not a script to be run (I believe it's VBA?) it's also not a Lisp, so what would I do to be able to use that code?&lt;/P&gt;
&lt;P&gt;DO I run it in Visual Basic Editor?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 15:59:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8637624#M116583</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-05T15:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8637700#M116584</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... what would I exactly do with the code in Post 2?&amp;nbsp; It's&amp;nbsp;... not a Lisp....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, it &lt;EM&gt;is&lt;/EM&gt;&amp;nbsp; AutoLisp code.&amp;nbsp; You should be able to just copy and paste it right into the Command: line.&amp;nbsp; Or you can add more to it to make it into a &lt;EM&gt;command definition&lt;/EM&gt;, and save it to a file, so you can load that and type in the defined command name to use it.&amp;nbsp; Is that what you're after?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 16:26:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8637700#M116584</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-03-05T16:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8637988#M116585</link>
      <description>&lt;P&gt;Yes, I think so, thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 18:06:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8637988#M116585</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-05T18:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8638394#M116586</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&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;.... you can add more to it to make it into a &lt;EM&gt;command definition&lt;/EM&gt;, and save it to a file, so you can load that and type in the defined command name to use it.&amp;nbsp; Is that what you're after?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this [untested]:&lt;/P&gt;
&lt;PRE&gt;(defun &lt;STRONG&gt;&lt;FONT color="#000000"&gt;C:AS&lt;FONT color="#0000ff"&gt;A&lt;/FONT&gt;F&lt;/FONT&gt;&lt;/STRONG&gt; (/ st); = &lt;FONT color="#000000"&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/FONT&gt;ll &lt;FONT color="#000000"&gt;&lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/FONT&gt;tyles &lt;FONT color="#0000ff"&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;rial&lt;/FONT&gt; &lt;FONT color="#000000"&gt;&lt;STRONG&gt;F&lt;/STRONG&gt;&lt;/FONT&gt;ont
  (while (setq st (tblnext "STYLE" (not st)))
    (setq st (entget (tblobjname "STYLE" (cdr (assoc 2 st)))))
    (entmod (subst '(3 . "&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;Arial&lt;/FONT&gt;&lt;/STRONG&gt;") (assoc 3 st) st))
  ); while
  (princ)
); defun&lt;/PRE&gt;
&lt;P&gt;Change the &lt;STRONG&gt;&lt;FONT color="#000000"&gt;AS&lt;FONT color="#0000ff"&gt;A&lt;/FONT&gt;F&lt;/FONT&gt;&lt;/STRONG&gt; if you want a different command name, and change the &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;blue&lt;/FONT&gt;&lt;/STRONG&gt; parts as appropriate if you want a different font applied to all Styles.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Save that into a file called something meaningful like &lt;STRONG&gt;&lt;FONT color="#000000"&gt;AllStyles&lt;FONT color="#0000ff"&gt;Arial&lt;/FONT&gt;Font&lt;FONT color="#ff00ff"&gt;.lsp&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;, in some folder location that is listed in the &lt;FONT color="#000000"&gt;OPTIONS&lt;/FONT&gt; command /&amp;nbsp;&lt;FONT color="#000000"&gt;Files&lt;/FONT&gt; tab /&amp;nbsp;&lt;FONT color="#000000"&gt;Support File Search Path&lt;/FONT&gt; list.&amp;nbsp; Use &lt;FONT color="#000000"&gt;APPLOAD&lt;/FONT&gt; to load it, and type whatever you end up with as a command name [the part following the &lt;STRONG&gt;&lt;FONT color="#000000"&gt;C:&lt;/FONT&gt;&lt;/STRONG&gt;] to&amp;nbsp;run it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It could also be modified to &lt;EM&gt;ask for the font&lt;/EM&gt;&amp;nbsp; you want used in all Styles, or to ask but offer a default value.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 20:23:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/8638394#M116586</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-03-05T20:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10287392#M116587</link>
      <description>&lt;P&gt;Thanks for the script it seems to be nearly there with what the original poster is asking, but it seems to default to an SHX type font. In my case at least, AutoCAD cannot find this font. Is there something in the code that needs to be changed to point to a TTF file?&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 15:55:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10287392#M116587</guid>
      <dc:creator>rkondracki</dc:creator>
      <dc:date>2021-05-03T15:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10287540#M116588</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7049630"&gt;@rkondracki&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... it seems to default to an SHX type font. In my case at least, AutoCAD cannot find this font. Is there something in the code that needs to be changed to point to a TTF file?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Set up a Text Style using the font you want, put this in at the Command line:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;FONT color="#000000"&gt;(entget (tblobjname "STYLE" "&lt;EM&gt;&lt;FONT color="#00CCFF"&gt;YourStyleName&lt;/FONT&gt;&lt;/EM&gt;"))&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;and look for the entry starting with a 3:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;FONT color="#000000"&gt;(3 . "&lt;FONT color="#00CCFF"&gt;&lt;EM&gt;YourFontName&lt;/EM&gt;&lt;/FONT&gt;")&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;and use however it has it there in place of Arial in the code.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 16:59:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10287540#M116588</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-05-03T16:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10629763#M116589</link>
      <description>&lt;P&gt;I have the same issue but I would like to solve it with VBA.&lt;/P&gt;&lt;P&gt;How can I change the Standard Style Font to Arial ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 17 Sep 2021 14:24:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10629763#M116589</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-17T14:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change All font in Text Style Manager</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10630825#M116590</link>
      <description>&lt;P&gt;&amp;nbsp;Hmm the answer google "change text style vba autocad"&lt;/P&gt;</description>
      <pubDate>Sat, 18 Sep 2021 00:38:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-all-font-in-text-style-manager/m-p/10630825#M116590</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-09-18T00:38:37Z</dc:date>
    </item>
  </channel>
</rss>

