<?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: Hatch  lisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8572087#M93236</link>
    <description>&lt;P&gt;You're welcome!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Feb 2019 18:40:48 GMT</pubDate>
    <dc:creator>Jonathan3891</dc:creator>
    <dc:date>2019-02-04T18:40:48Z</dc:date>
    <item>
      <title>Hatch  lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8570860#M93233</link>
      <description>&lt;P&gt;hi!!!&lt;/P&gt;
&lt;PRE id="tw-target-text" class="tw-data-text tw-ta tw-text-small" dir="ltr" style="text-align: left; height: 72px;" data-placeholder="Traduction" data-fulltext=""&gt;&lt;SPAN&gt;can someone give me a lisp to change transparency of the hatching in the blocks please&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 11:09:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8570860#M93233</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-04T11:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hatch  lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8571195#M93234</link>
      <description>&lt;P&gt;This solution was posted&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-hatch-transparency-in-nested-blocks/td-p/7375176" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:HT ( / aDoc tr)
     (vl-load-com)
     (setq aDoc (vla-get-ActiveDocument (vlax-get-acad-object))) 
     (if
       (progn
         (initget 132)
         (setq tr (getint "\nSpecify transparency (0-90): "))
         (cond
           ((eq (type tr) 'int)
            (if (&amp;lt;= 0 tr 90) (setq tr (itoa tr)))
           )
           ((eq (type tr) 'str)
            (or
              (wcmatch (strcase tr) "BYLAYER,BYBLOCK")
              (not (princ "\nInvalid value."))
            )
           )
         )
       )
       (vlax-for blk (vla-get-blocks aDoc)
         (if
           (and
             (eq :vlax-false (vla-get-islayout blk))
             (eq :vlax-false (vla-get-isxref blk))
           )
           (vlax-for itm blk
             (if
               (eq (vla-get-ObjectName itm) "AcDbHatch")
               (vla-put-entitytransparency itm tr)
             )
           )
         )
       )   
     )
     (vla-regen adoc acActiveViewport)
     (princ)
)&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Feb 2019 13:40:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8571195#M93234</guid>
      <dc:creator>Jonathan3891</dc:creator>
      <dc:date>2019-02-04T13:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Hatch  lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8571433#M93235</link>
      <description>&lt;DIV class="tw-swapa"&gt;
&lt;DIV class="DHcWmd"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="oSioSc"&gt;
&lt;DIV id="tw-target"&gt;
&lt;DIV id="tw-target-text-container" class="gsrt tw-ta-container tw-nfl"&gt;
&lt;PRE id="tw-target-text" class="tw-data-text tw-ta tw-text-small" dir="ltr" style="text-align: left; height: 96px;" data-placeholder="Traduction" data-fulltext=""&gt;&lt;SPAN&gt;thank you so much Jonathan;that's what I have been looking for some time my problem is finally resolved a thousand times thank you very much thank you&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 04 Feb 2019 14:53:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8571433#M93235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-04T14:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hatch  lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8572087#M93236</link>
      <description>&lt;P&gt;You're welcome!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 18:40:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/hatch-lisp/m-p/8572087#M93236</guid>
      <dc:creator>Jonathan3891</dc:creator>
      <dc:date>2019-02-04T18:40:48Z</dc:date>
    </item>
  </channel>
</rss>

