<?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: Trying to create a macro in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345453#M2613</link>
    <description>&lt;P&gt;No only horizontal.&lt;BR /&gt;For vertical or at an angle I think I could add in the code a request to pick the side to draw the rectangle.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2025 15:30:55 GMT</pubDate>
    <dc:creator>paullimapa</dc:creator>
    <dc:date>2025-02-28T15:30:55Z</dc:date>
    <item>
      <title>Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344371#M2608</link>
      <description>&lt;P&gt;I want click a macro then I can select a line that will create a rectangle 25 inches above that line. Is this possible?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 02:38:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344371#M2608</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-02-28T02:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344394#M2609</link>
      <description>&lt;P&gt;Questions:&lt;/P&gt;&lt;P&gt;1. What are the dimensions of the Rectangle Height &amp;amp; Width?&lt;/P&gt;&lt;P&gt;2. Does it matter if the Rectangle starts at 25" above from one end of the Line vs the other end?&lt;/P&gt;&lt;P&gt;3. What if the LINE is at an angle?&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. When you say macro is it a menu macro or lisp function?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 03:17:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344394#M2609</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-02-28T03:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344601#M2610</link>
      <description>The height of the rectangle is 4 inches&lt;BR /&gt;&lt;BR /&gt;The width is whatever the length of the line is.&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2025 07:35:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344601#M2610</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-02-28T07:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344691#M2611</link>
      <description>&lt;P&gt;Try attached lisp function&amp;nbsp;&lt;SPAN&gt;DrHzRec.lsp save into one of the folders under Options&amp;gt;Files&amp;gt;Support File Search Path.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;On AutoCAD command line enter the following:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(load "DrHzRec") &lt;/LI-CODE&gt;&lt;P&gt;Then to execute enter:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DrHzRec&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Then pick a horizontal &lt;STRONG&gt;LINE&lt;/STRONG&gt; and it will draw the &lt;STRONG&gt;Rectangle&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1740730386306.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1472361i1EE529877E463C70/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1740730386306.png" alt="paullimapa_0-1740730386306.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you want in the code you can change the&amp;nbsp;&lt;SPAN&gt;offset distance &amp;amp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;height of the rectangle here:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;  (setq en (ssname ss 0) ; get entity
        ofds 25 ; offset distance
        rech 4  ; height of rectangle
        stptx (getpropertyvalue en "StartPoint/X")
        stpty (getpropertyvalue en "StartPoint/Y")
        stptz (getpropertyvalue en "StartPoint/Z")
        edptx (getpropertyvalue en "EndPoint/X")
        edpty (getpropertyvalue en "EndPoint/Y")
        edptz (getpropertyvalue en "EndPoint/Z")
  )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 08:14:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13344691#M2611</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-02-28T08:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345286#M2612</link>
      <description>Will this work if the line in vertical or on an angle?&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2025 14:13:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345286#M2612</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-02-28T14:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345453#M2613</link>
      <description>&lt;P&gt;No only horizontal.&lt;BR /&gt;For vertical or at an angle I think I could add in the code a request to pick the side to draw the rectangle.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 15:30:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345453#M2613</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-02-28T15:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345536#M2614</link>
      <description>That would be amazing. I've used autocad for a long time. Just never&lt;BR /&gt;learned how to code or attach codes. I'm a self employed countertop&lt;BR /&gt;measurer and I'm trying to learn how to add a button you would say that can&lt;BR /&gt;add splashes (rectangle) the length of a line on any angle. Then how i&lt;BR /&gt;could change a line into a scribed line. I'd love to pick your brain on how&lt;BR /&gt;I can get these made. It would make my job alot easier. Thanks again for&lt;BR /&gt;your help.&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2025 16:03:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345536#M2614</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-02-28T16:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345547#M2615</link>
      <description>&lt;P&gt;Do a screenshot showing what a&amp;nbsp;&lt;SPAN&gt;scribed line is&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 16:09:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345547#M2615</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-02-28T16:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345590#M2616</link>
      <description>I'm not at my computer right now. Can I send you a dxf file of what I'm&lt;BR /&gt;looking to do later today?&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2025 16:35:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345590#M2616</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-02-28T16:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345593#M2617</link>
      <description>&lt;P&gt;sure you can post that here when you're ready.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 16:37:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345593#M2617</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-02-28T16:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345931#M2618</link>
      <description>&lt;P&gt;Here's a revised version I call&amp;nbsp;&lt;STRONG&gt;DrSdRec.lsp&lt;/STRONG&gt; which is actually modified from another thread.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DrSdRec&lt;/STRONG&gt; now lets you pick a side and supports LINEs drawn at any angle.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 20:17:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13345931#M2618</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-02-28T20:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13346378#M2619</link>
      <description>&lt;P&gt;Another&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;; very simple offset a line a distance and make a rectang
; By Alan H Feb 2025

; you select an end and the offset will always be to the left

(defun c:lrect ( / ent ename 

(setq oldsnap (getvar 'osmode))
(setvar 'osmode 0)

(setq ent (entsel "\nPick line near left end "))
(setq off (getreal "\nEnter offset "))
(setq ename (car ent))
(setq pt (cadr ent))
(setq entg (entget (car ent)))
(setq pt1 (cdr (assoc 10 entg)))
(setq pt2 (cdr (assoc 11 entg)))
(setq d1 (distance pt pt1))
(setq d2 (distance pt pt2))
(if (&amp;gt; d1 d2)
 (setq tmp pt1
 pt1 pt2
 pt2 tmp)
)
(setq ang (+ (angle pt1 pt2) (/ pi 2)))
(setq pt3 (polar pt2 ang off))
(setq pt4 (polar pt1 ang off))

(command "Pline" pt1 pt2 pt3 pt4 "C")
;(command "erase" ename "")

(setvar 'osmode oldsnap)
(princ)
)&lt;/LI-CODE&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;&lt;P&gt;An advanced answer, enter values or can be preset then pick say bottom left point.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaHaven_0-1740799049049.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1472751iD33F8798C09DD052/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1740799049049.png" alt="SeaHaven_0-1740799049049.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 04:05:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13346378#M2619</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-03-01T04:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13346925#M2620</link>
      <description>&lt;P&gt;Thanks again for all your help&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 16:19:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13346925#M2620</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-03-01T16:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13346980#M2621</link>
      <description>&lt;P&gt;I see that the &lt;STRONG&gt;WHITE LINES&lt;/STRONG&gt; are all individual segments.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1740849558880.png" style="width: 1035px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1472866i036ACFE1CB581924/image-dimensions/1035x369?v=v2" width="1035" height="369" role="button" title="paullimapa_0-1740849558880.png" alt="paullimapa_0-1740849558880.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If I did this manually I would:&lt;/P&gt;&lt;P&gt;First join them together as a single &lt;STRONG&gt;PLINE&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next OFFSET it&amp;nbsp;&lt;STRONG&gt;3/8" &lt;/STRONG&gt;picking&amp;nbsp;the side needed&lt;/P&gt;&lt;P&gt;Then go back and draw the dog ears &lt;STRONG&gt;TRIMMING&lt;/STRONG&gt; the PLINE back &lt;STRONG&gt;3&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_1-1740849772961.png" style="width: 1040px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1472867iF6F1BE96F5FB020C/image-dimensions/1040x312?v=v2" width="1040" height="312" role="button" title="paullimapa_1-1740849772961.png" alt="paullimapa_1-1740849772961.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Not sure how this can be done with lisp...perhaps&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;might have a thought?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 17:23:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13346980#M2621</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-03-01T17:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347131#M2622</link>
      <description>&lt;P&gt;I've always done it manually by offsetting. I'd love to create commands that could do what I'm trying to accomplish. Example if one side ( left dog ear ) could be created then it could turn the white line red and create a new dog ear line that was scribed. I've seen other programs able to do this, just not seen it in autocad.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 21:21:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347131#M2622</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-03-01T21:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347225#M2623</link>
      <description>&lt;P&gt;In the program I've seen. Create one command called one dog ear. A rectangle you would click the one ear command, after you would select all the lines (lets say 3) you want offset the 3/8" then I would select the side I want it to start at. The last or end of the rectangle would have a 3/8 gap or opening.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does this help?&lt;/P&gt;</description>
      <pubDate>Sun, 02 Mar 2025 00:01:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347225#M2623</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-03-02T00:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347320#M2624</link>
      <description>&lt;P&gt;I think something like pick 1st line/pline segment. Dog ear yes/no, pick next segment, dog ear end yes/no, pick segment and so on. One case is a single line others two minimum.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe making it a pline will help.&amp;nbsp;Needs a bit of thought but I think can be done. I did something like this for another task offset a line pick next line offset then fillet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is just a sub function about getting direction of a pline segment. Based on pick end. May need to use, I think I got original code from Lee-mac.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun getplineseg (ent /  ename param preparam postparam)
  (setq ename (car ent))
  (setq pt (cadr ent))
  (setq pt (vlax-curve-getClosestPointTo ename pt))
  (setq param (vlax-curve-getParamAtPoint ename pt))
  (setq preparam (fix param))
  (setq postparam (1+ preparam))
  (setq pt1 (vlax-curve-getPointAtParam ename preparam)
    pt2 (vlax-curve-getPointAtParam ename postparam)
  )
 (setq d1 (distance pt pt1))
 (setq d2 (distance pt pt2))
  (if (&amp;gt; d1 d2)
   (setq tmp pt1
   pt1 pt2
   pt2 tmp)
  )
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaHaven_0-1740887119732.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1472902i0E7E6EFE2BDB2642/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1740887119732.png" alt="SeaHaven_0-1740887119732.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Mar 2025 03:45:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347320#M2624</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-03-02T03:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347777#M2625</link>
      <description>&lt;P&gt;How do I create this into a lisp?&lt;/P&gt;</description>
      <pubDate>Sun, 02 Mar 2025 16:17:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13347777#M2625</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-03-02T16:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13348166#M2626</link>
      <description>&lt;P&gt;Getting there just be patient have the two ends working and skip, just need to fillet the objects.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaHaven_0-1740962063175.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1473033i151BBD3E0DC1DE70/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1740962063175.png" alt="SeaHaven_0-1740962063175.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Mar 2025 00:34:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13348166#M2626</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-03-03T00:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a macro</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13348175#M2627</link>
      <description>Thanks again, what you guys do is very hard work. I've been trying to learn&lt;BR /&gt;and it's very hard if you don't code for a living. You guys are amazing.&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Mar 2025 00:40:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/trying-to-create-a-macro/m-p/13348175#M2627</guid>
      <dc:creator>jsucheckiM6JVK</dc:creator>
      <dc:date>2025-03-03T00:40:52Z</dc:date>
    </item>
  </channel>
</rss>

