<?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 LISP to change SansSerif font to romans.shx in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502854#M74861</link>
    <description>&lt;P&gt;I have about 500 drawings that have a text style SansSerif_Bold that use the SansSerif font and I need to change these all to use the romans.shx font.&amp;nbsp;&amp;nbsp;I know that there are lots of posts about LISPs for changing the text style font from one font to another.&amp;nbsp; I think that I have read them all.&amp;nbsp; I have a bat file that calls a scrip that call my LISP for a directory of drawings.&amp;nbsp; The problem is that my LISP file isn't working.&amp;nbsp; It appears to change the font to romans but when I go back into the drawing to check it; when I go to style and select the SansSerif_Bold, it has romans in the font name but it wants me to Apply it when exiting text style.&amp;nbsp; I don't have to select romans I just have to click Apply.&amp;nbsp; So for some reason my LISP isn't doing the Apply.&amp;nbsp; I tried changing romans to romans.shx in my LISP but that caused not to work at all.&amp;nbsp; Below is the LISP that I am using.&amp;nbsp; Any help here would be greatly appreciated as I am pretty weak when it comes to this stuff.&amp;nbsp; The LISP I am using was found on another forum and I modified with the text styles/fonts that I need to change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun C:P6()&lt;BR /&gt;(vl-load-com)&lt;BR /&gt;(vla-setfont&lt;BR /&gt;(vla-item&lt;BR /&gt;(vla-get-textstyles&lt;BR /&gt;(setq adoc (vla-get-activedocument&lt;BR /&gt;(vlax-get-acad-object))))&lt;BR /&gt;"SansSerif_Bold"&lt;BR /&gt;)&lt;BR /&gt;"Romans" ; font name&lt;BR /&gt;:vlax-false ; non-bold (otherwise :vlax-true)&lt;BR /&gt;:vlax-true ; italic (otherwise :vlax-false)&lt;BR /&gt;0 ; symbol's flag&lt;BR /&gt;66 ;; sum of flag values for ticks and characters&lt;BR /&gt;)&lt;BR /&gt;(vla-regen adoc acallviewports)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 May 2020 21:04:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-05-08T21:04:30Z</dc:date>
    <item>
      <title>LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502854#M74861</link>
      <description>&lt;P&gt;I have about 500 drawings that have a text style SansSerif_Bold that use the SansSerif font and I need to change these all to use the romans.shx font.&amp;nbsp;&amp;nbsp;I know that there are lots of posts about LISPs for changing the text style font from one font to another.&amp;nbsp; I think that I have read them all.&amp;nbsp; I have a bat file that calls a scrip that call my LISP for a directory of drawings.&amp;nbsp; The problem is that my LISP file isn't working.&amp;nbsp; It appears to change the font to romans but when I go back into the drawing to check it; when I go to style and select the SansSerif_Bold, it has romans in the font name but it wants me to Apply it when exiting text style.&amp;nbsp; I don't have to select romans I just have to click Apply.&amp;nbsp; So for some reason my LISP isn't doing the Apply.&amp;nbsp; I tried changing romans to romans.shx in my LISP but that caused not to work at all.&amp;nbsp; Below is the LISP that I am using.&amp;nbsp; Any help here would be greatly appreciated as I am pretty weak when it comes to this stuff.&amp;nbsp; The LISP I am using was found on another forum and I modified with the text styles/fonts that I need to change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun C:P6()&lt;BR /&gt;(vl-load-com)&lt;BR /&gt;(vla-setfont&lt;BR /&gt;(vla-item&lt;BR /&gt;(vla-get-textstyles&lt;BR /&gt;(setq adoc (vla-get-activedocument&lt;BR /&gt;(vlax-get-acad-object))))&lt;BR /&gt;"SansSerif_Bold"&lt;BR /&gt;)&lt;BR /&gt;"Romans" ; font name&lt;BR /&gt;:vlax-false ; non-bold (otherwise :vlax-true)&lt;BR /&gt;:vlax-true ; italic (otherwise :vlax-false)&lt;BR /&gt;0 ; symbol's flag&lt;BR /&gt;66 ;; sum of flag values for ticks and characters&lt;BR /&gt;)&lt;BR /&gt;(vla-regen adoc acallviewports)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 21:04:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502854#M74861</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-08T21:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502924#M74862</link>
      <description>&lt;P&gt;There is a meaningful difference between assigning .TTF and .SHX fonts when used in Styles, which might be your problem.&amp;nbsp; If assigning a .SHX font, compared to a .TTF font, you need to give it &lt;EM&gt;one more input&lt;/EM&gt;.&amp;nbsp; I wouldn't typically do this with the (vla-...) approach, but in a simpler way with a (command) function, so I'm not sure about the exact inputs to use your way [should your 66 bit-code be different?], but going through the steps manually at the command line in a drawing [and just hitting Enter for the defaults except for the font], here's the difference:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Command: -STYLE&lt;BR /&gt;Enter name of text style or [?]: &lt;STRONG&gt;&lt;FONT color="#00CCFF"&gt;Anything&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#999999"&gt;[....Existing or New style, depending....]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Specify font name or font filename (for SHX) &amp;lt;&lt;FONT color="#00CCFF"&gt;default&lt;/FONT&gt;&amp;gt;: &lt;FONT color="#000000"&gt;&lt;STRONG&gt;sanss___.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ttf&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;Specify height of text or [Annotative] &amp;lt;0'-0"&amp;gt;:&lt;BR /&gt;Specify width factor &amp;lt;1.0&amp;gt;:&lt;/P&gt;
&lt;P&gt;Specify obliquing angle &amp;lt;0d0'0"&amp;gt;:&lt;BR /&gt;Display text backwards? [Yes/No] &amp;lt;No&amp;gt;:&lt;BR /&gt;Display text upside-down? [Yes/No] &amp;lt;No&amp;gt;:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#800080"&gt;.... NOTE: Vertical question is&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG&gt;&lt;FONT color="#800080"&gt;not asked&lt;/FONT&gt;&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#800080"&gt;, as it is for .SHX font below ....&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;"&lt;FONT color="#00CCFF"&gt;Anything&lt;/FONT&gt;" is now the current text style.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Whereas:&lt;/P&gt;
&lt;P&gt;Command: -STYLE&lt;BR /&gt;Enter name of text style or [?]: &lt;STRONG&gt;&lt;FONT color="#00CCFF"&gt;Whatever&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#999999"&gt;[....Existing or New style, depending....]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Specify font name or font filename (for SHX) &amp;lt;&lt;FONT color="#00CCFF"&gt;default&lt;/FONT&gt;&amp;gt;: &lt;STRONG&gt;&lt;FONT color="#000000"&gt;romans.&lt;/FONT&gt;&lt;FONT color="#FF0000"&gt;shx&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;Specify height of text or [Annotative] &amp;lt;0'-0"&amp;gt;:&lt;BR /&gt;Specify width factor &amp;lt;1.0&amp;gt;:&lt;/P&gt;
&lt;P&gt;Specify obliquing angle &amp;lt;0d0'0"&amp;gt;:&lt;BR /&gt;Display text backwards? [Yes/No] &amp;lt;No&amp;gt;:&lt;BR /&gt;Display text upside-down? [Yes/No] &amp;lt;No&amp;gt;:&lt;BR /&gt;&lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;Vertical? [Yes/No] &amp;lt;No&amp;gt;: &lt;FONT color="#800080"&gt;&lt;EM&gt;&amp;lt;----- NOT ASKED for a .TTF font, but needs an answer for .SHX&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;"&lt;FONT color="#00CCFF"&gt;Whatever&lt;/FONT&gt;" is now the current text style.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To be a little pickier about it, the vertical question will not be asked for &lt;EM&gt;any&lt;/EM&gt; .SHX font, only those that are defined for the possibility, but ROMANS is one of those.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 21:50:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502924#M74862</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-05-08T21:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502945#M74863</link>
      <description>&lt;P&gt;I have never tried vla-setfont.&lt;/P&gt;
&lt;P&gt;Try this instead...&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(vlax-for style (vlax-get (vla-get-activedocument (vlax-get-acad-object)) 'textstyles)
  (if (= (vlax-get style 'fontfile) "sanss___.ttf")
    (vlax-put style 'fontfile "romans.shx")
  )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;You may have to add your own regen.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 22:00:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502945#M74863</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2020-05-08T22:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502948#M74864</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have about 500 drawings that have a text style SansSerif_Bold that use the SansSerif font and I need to change these all to use the romans.shx font.&amp;nbsp; ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Also, just a general &lt;EM&gt;caveat:&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Changing a font assignment is never as simple as just doing that.&amp;nbsp; You should, unfortunately, go through your 500 drawings and look them over carefully, because:&lt;BR /&gt;A)&amp;nbsp; you will get Mtext with line wrappings that fall at different places, and therefore sometimes &lt;EM&gt;different numbers of lines&lt;/EM&gt;, which could be either more lines or fewer lines depending on the relationship between the previous font's and the new font's character widths, and;&lt;/P&gt;
&lt;P&gt;B)&amp;nbsp; you will get Dimensions whose text either no longer fits between the extension lines and will therefore be kicked outboard, or that used to be outboard but now fits inside.&lt;/P&gt;
&lt;P&gt;C)&amp;nbsp; even plain Text will change length, which could be getting either longer or shorter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the first possibility in each of those, things could newly &lt;EM&gt;overlap other drawn elements&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure without experimenting what the effect would be on MultiLeaders with leaders attached to Mtext content other than at the top-left beginning corner, i.e. whether the attachments will all fix themselves [and if they do, they could also overlap other elements that they didn't before].&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 22:04:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9502948#M74864</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-05-08T22:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9503071#M74865</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;thanks for the responses.&amp;nbsp; I have done this before as a manual exercise so I am aware how it is affecting the rest of the drawing and that's all good.&amp;nbsp; I am just hoping to simplify the process this time around as it seems like there should be a way.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&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/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;I need to read about vla and vlax as I am not familiar with either.&amp;nbsp; I have been trial and mostly erroring trying to figure out something that would work.&amp;nbsp; And the LISP that I showed got me closer than anything else so I was hoping a tweak with it would be the missing piece.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;when I paste your code right into the command line, it updates 2 of the 3 SansSerif styles that I need to update.&amp;nbsp; One of the SansSerif styles has a Bold Font Style so it apparently doesn't like that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you both for trying help me with my ignorance here!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 23:38:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9503071#M74865</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-08T23:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9503849#M74866</link>
      <description>&lt;P&gt;I guess that the bold version is a different font file.&lt;/P&gt;
&lt;P&gt;Instead of&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(= (vlax-get style 'fontfile) "sanss___.ttf")&lt;/LI-CODE&gt;
&lt;P&gt;try&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(wcmatch (strcase (vlax-get style 'fontfile)) "SANSS*.TTF")&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 May 2020 15:22:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9503849#M74866</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2020-05-09T15:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9506666#M74867</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;that works great when I paste code right into the drawing.&amp;nbsp; Thanks!&amp;nbsp; All 3 SansSerif fonts changed to romans.shx.&amp;nbsp; Now, can I put this in a LISP?&amp;nbsp; I tried the one below but after loading it, it won't find P6 to run.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun C:P6()&lt;BR /&gt;(vl-load-com)&lt;BR /&gt;(vlax-for style (vlax-get (vla-get-activedocument (vlax-get-acad-object)) 'textstyles)&lt;BR /&gt;(if (wcmatch (strcase (vlax-get style 'fontfile)) "SANSS*.TTF")&lt;BR /&gt;(vlax-put style 'fontfile "romans.shx")&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 13:13:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9506666#M74867</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-11T13:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9506702#M74868</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp; I tried the one below but after loading it, it won't find P6 to run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun C:P6()&lt;BR /&gt;(vl-load-com)&lt;BR /&gt;(vlax-for style (vlax-get (vla-get-activedocument (vlax-get-acad-object)) 'textstyles)&lt;BR /&gt;(if (wcmatch (strcase (vlax-get style 'fontfile)) "SANSS*.TTF")&lt;BR /&gt;(vlax-put style 'fontfile "romans.shx")&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did you not get some kind of error message when loading?&amp;nbsp; This is an example of why indenting can help, with any opening left parenthesis whose closing right parenthesis isn't in the &lt;EM&gt;same line&lt;/EM&gt;&amp;nbsp; of code has that in the &lt;EM&gt;same horizontal position below&lt;/EM&gt;, so you can easily see the pairings:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;(&lt;/FONT&gt;defun C:P6()&lt;BR /&gt;&amp;nbsp; (vl-load-com)&lt;BR /&gt;&amp;nbsp; &lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;(&lt;/FONT&gt;&lt;/STRONG&gt;vlax-for style (vlax-get (vla-get-activedocument (vlax-get-acad-object)) 'textstyles)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &lt;STRONG&gt;&lt;FONT color="#FF00FF"&gt;(&lt;/FONT&gt;&lt;/STRONG&gt;if (wcmatch (strcase (vlax-get style 'fontfile)) "SANSS*.TTF")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (vlax-put style 'fontfile "romans.shx")&lt;FONT color="#00CCFF"&gt;; then argument&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#00CCFF"&gt;; end if&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; &lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#00CCFF"&gt;; end vlax-for&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#00CCFF"&gt;; end defun&amp;nbsp;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt; &amp;lt;--- missing&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 13:26:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9506702#M74868</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-05-11T13:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9506729#M74869</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;thank you!&amp;nbsp; I was just googling malformed list on input and was counting parenthesis but I think that I was overlooking the first one in front of defun lol.&amp;nbsp; I had also noticed that some routines had indentions and others didn't but wasn't sure if there was a rhyme or reason as to why some used them and some didn't.&amp;nbsp; I get it now though.&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 13:34:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9506729#M74869</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-11T13:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9507276#M74870</link>
      <description>The code looks fine (as though I've seen it before &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;You should paste it into your acaddoc.lsp file, or if you don't have one,&lt;BR /&gt;then create one and put it in you Support directory.  Notepad will work&lt;BR /&gt;just fine.&lt;BR /&gt;To see if you have one, at the command prompt enter:&lt;BR /&gt;(findfile "acaddoc.lsp")&lt;BR /&gt;If it returns other than nil then you have one and it shows the full path&lt;BR /&gt;to the file.&lt;BR /&gt;After the pasting, add one line (after and outside the function):&lt;BR /&gt;(c:P6)</description>
      <pubDate>Mon, 11 May 2020 16:10:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9507276#M74870</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2020-05-11T16:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9507289#M74871</link>
      <description>Thanks, Kent. I missed it too.&lt;BR /&gt;That's why it's so important to use the "insert code" icon, to maintain&lt;BR /&gt;indentures when pasting.</description>
      <pubDate>Mon, 11 May 2020 16:14:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9507289#M74871</guid>
      <dc:creator>husamcivil</dc:creator>
      <dc:date>2020-05-11T16:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: LISP to change SansSerif font to romans.shx</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9507318#M74872</link>
      <description>That's odd because I had posted that response (unless someone has changed&lt;BR /&gt;my name).  &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt; speaking.</description>
      <pubDate>Mon, 11 May 2020 16:21:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-sansserif-font-to-romans-shx/m-p/9507318#M74872</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2020-05-11T16:21:50Z</dc:date>
    </item>
  </channel>
</rss>

