<?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: AUTOAREA.LSP in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642617#M141638</link>
    <description>&lt;P&gt;glad that finally worked out for you...cheers...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;A target="_blank" href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3aareaobjectlink_windows32and64%3aen"&gt;Area Object Link&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addattmod_windows32and64%3aen"&gt;Attribute Modifier&lt;/A&gt; | &lt;A target="_blank" href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addsetup_windows32and64%3aen"&gt;Dwg Setup&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addcalc_windows32and64%3aen"&gt;Feet-Inch Calculator&lt;/A&gt;&lt;SPAN style="font-family: Arial,sans-serif; text-shadow: auto;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3alayerapps_windows32and64%3aen"&gt;Layer Apps&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addlist_windows32and64%3aen"&gt;List on Steroids&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addzmscl_windows32and64%3aen"&gt;VP Zoom Scales&lt;/A&gt; |&lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Home/Index"&gt;Exchange App Store&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 19 May 2015 22:54:03 GMT</pubDate>
    <dc:creator>paullimapa</dc:creator>
    <dc:date>2015-05-19T22:54:03Z</dc:date>
    <item>
      <title>AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5637432#M141631</link>
      <description>&lt;P&gt;Can anyone plase make this work in AutoCAD Map3D 2015 release?&lt;BR /&gt;It has worked fine in all previous versions of AutoCAD Map3D (prior to 2015).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;;This program will calculate the area of irregular polygons&lt;BR /&gt;;;by picking an area inside the polygon.&lt;/P&gt;&lt;P&gt;(defun C:AUTOAREA (/ ar en n num pt ss1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (if (not "acadapp.exp")(xload "acadapp.exp"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq n 0)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq ss1 (ssadd))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (while (setq pt (getpoint "\nSelect internal point:"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (bpoly pt) ;;ADS function&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq ss1 (ssadd (entlast) ss1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq num (sslength ss1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command ".area" "a" "e")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (while (/= num n)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq en (ssname ss1 n))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (command en)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq n (1+ n))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command "" "")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command "erase" ss1 "")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command "redraw")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ "\nThe area of the polygon in hectares is: ")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "HECTARE"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ "\nThe area of the polygon in acres is: ")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "ACRE"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (setq ss nil)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (prin1)&lt;BR /&gt;&amp;nbsp;);;end autoarea.lsp&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2015 19:39:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5637432#M141631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-15T19:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5637576#M141632</link>
      <description>&lt;P&gt;The problem is with AutoCAD 2015's BPoly function which goes into an endless loop instead of ending properly like previous versions.&lt;/P&gt;&lt;P&gt;BPoly does work properly for AutoCAD 2016 if you want to install this version instead of dealing with the BPoly bug in 2015.&lt;/P&gt;&lt;P&gt;Or as KentCooper has already provided a solution for this by using the Boundary command instead of relying on the BPoly function:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/batch-generate-closed-polylines/m-p/2593318"&gt;http://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/batch-generate-closed-polylines/m-p/2593318&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So you can revise your routine and use Boundary instead of BPoly:&lt;/P&gt;&lt;P&gt;;;This program will calculate the area of irregular polygons&lt;BR /&gt;;;by picking an area inside the polygon.&lt;/P&gt;&lt;P&gt;(defun C:AUTOAREA (/ ar en n num pt ss1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq n 0)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq ss1 (ssadd))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (while (setq pt (getpoint "\nSelect internal point:"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (command"_.Boundary" pt "") ;;use Boundary instead of BPoly:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq ss1 (ssadd (entlast) ss1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq num (sslength ss1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command ".area" "a" "e")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (while (/= num n)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq en (ssname ss1 n))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (command en)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq n (1+ n))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command "" "")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command "erase" ss1 "")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command "redraw")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ "\nThe area of the polygon in hectares is: ")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "HECTARE"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ "\nThe area of the polygon in acres is: ")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "ACRE"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (setq ss nil)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (prin1)&lt;BR /&gt;&amp;nbsp;);;end autoarea.lsp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2015 21:53:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5637576#M141632</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2015-05-15T21:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5641998#M141633</link>
      <description>&lt;P&gt;It works again!&lt;BR /&gt;Thank you very much!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This LISP routine is very useful to us but it does have some other issues. If it's not too much work maybe you could fix another bug:&lt;BR /&gt;This routine creates a closed polyline (to get the area) and then deletes it. However if it fails to create a closed polyline (no closed boundary) it will delete something else that is not supposed to be deleted.&lt;BR /&gt;Is this an easy fix?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But either way, thank you for making it work again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 16:22:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5641998#M141633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-19T16:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642138#M141634</link>
      <description>&lt;P&gt;This revised code should take care of the problem when a closed boundary pline is not created:&lt;/P&gt;&lt;P&gt;;;This program will calculate the area of irregular polygons&lt;BR /&gt;;;by picking an area inside the polygon.&lt;/P&gt;&lt;P&gt;(defun C:AUTOAREA (/ ar e0 e1 en n num pt ss1)&lt;BR /&gt;&amp;nbsp; (setq e0 (entlast)) ; get original last entity&lt;BR /&gt;&amp;nbsp; (setq n 0)&lt;BR /&gt;&amp;nbsp; (setq ss1 (ssadd))&lt;BR /&gt;&amp;nbsp; (while (not pt)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq pt (getpoint "\nSelect internal point:"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (command"_.Boundary" pt "") ;;use Boundary instead of BPoly&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq e1 (entlast)) ; get new last entity&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (if (not(eq e0 e1)) ; chk if new boundary was created&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (progn&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; (setq ss1 (ssadd (entlast) ss1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; ); progn&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (progn&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; (princ"\nNo Boundary Created...try again...")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq pt nil)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ); progn&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ) ;if&lt;BR /&gt;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp; (setq num (sslength ss1))&lt;BR /&gt;&amp;nbsp; (command "_.Area" "_A" "_E")&lt;BR /&gt;&amp;nbsp; (while (/= num n)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq en (ssname ss1 n))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command en)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq n (1+ n))&lt;BR /&gt;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp; (command "" "")&lt;BR /&gt;&amp;nbsp; (command "_.Erase" ss1 "")&lt;BR /&gt;&amp;nbsp; (command "_.Redraw")&lt;BR /&gt;&amp;nbsp; (princ "\nThe area of the polygon in hectares is: ")&lt;BR /&gt;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "HECTARE"))&lt;BR /&gt;&amp;nbsp; (princ "\nThe area of the polygon in acres is: ")&lt;BR /&gt;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "ACRE"))&lt;BR /&gt;&amp;nbsp; (prin1)&lt;BR /&gt;);;end autoarea.lsp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;A href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3aareaobjectlink_windows32and64%3aen" target="_blank"&gt;Area Object Link&lt;/A&gt; | &lt;A href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addattmod_windows32and64%3aen" target="_blank"&gt;Attribute Modifier&lt;/A&gt; | &lt;A href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addsetup_windows32and64%3aen" target="_blank"&gt;Dwg Setup&lt;/A&gt; | &lt;A href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addcalc_windows32and64%3aen" target="_blank"&gt;Feet-Inch Calculator&lt;/A&gt;&lt;SPAN style="font-family: Arial,sans-serif; text-shadow: auto;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3alayerapps_windows32and64%3aen" target="_blank"&gt;Layer Apps&lt;/A&gt; | &lt;A href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addlist_windows32and64%3aen" target="_blank"&gt;List on Steroids&lt;/A&gt; | &lt;A href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addzmscl_windows32and64%3aen" target="_blank"&gt;VP Zoom Scales&lt;/A&gt; |&lt;A href="https://apps.exchange.autodesk.com/ACD/en/Home/Index" target="_blank"&gt;Exchange App Store&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 17:46:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642138#M141634</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2015-05-19T17:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642346#M141635</link>
      <description>&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;That works great now, but it doesn't allow me to pick multiple areas like the old one did. Is that also&amp;nbsp;possible along with this new fix?&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 19:43:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642346#M141635</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-19T19:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642368#M141636</link>
      <description>&lt;P&gt;Ok, got you...&lt;/P&gt;&lt;P&gt;;;This program will calculate the area of irregular polygons&lt;BR /&gt;;;by picking an area inside the polygon.&lt;/P&gt;&lt;P&gt;(defun C:AUTOAREA (/ ar e0 e1 en n num pt ss1)&lt;BR /&gt;&amp;nbsp; (setq e0 (entlast)) ; get original last entity&lt;BR /&gt;&amp;nbsp; (setq n 0)&lt;BR /&gt;&amp;nbsp; (setq ss1 (ssadd))&lt;BR /&gt;&amp;nbsp; (while (setq pt (getpoint "\nSelect internal point:"))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command"_.Boundary" pt "") ;;use Boundary instead of BPoly:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq e1 (entlast)) ; get new last entity&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (if (not(eq e0 e1)) ; chk if new boundary was created&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (progn&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq ss1 (ssadd (entlast) ss1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ); progn&lt;BR /&gt;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp; (setq num (sslength ss1))&lt;BR /&gt;&amp;nbsp; (command "_.Area" "_A" "_E")&lt;BR /&gt;&amp;nbsp; (while (/= num n)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq en (ssname ss1 n))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (command en)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (setq n (1+ n))&lt;BR /&gt;&amp;nbsp; );;while&lt;BR /&gt;&amp;nbsp; (command "" "")&lt;BR /&gt;&amp;nbsp; (command "_.Erase" ss1 "")&lt;BR /&gt;&amp;nbsp; (command "_.Redraw")&lt;BR /&gt;&amp;nbsp; (princ "\nThe area of the polygon in hectares is: ")&lt;BR /&gt;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "HECTARE"))&lt;BR /&gt;&amp;nbsp; (princ "\nThe area of the polygon in acres is: ")&lt;BR /&gt;&amp;nbsp; (princ (cvunit (setq ar (getvar "AREA")) "SQ METER" "ACRE"))&lt;BR /&gt;&amp;nbsp; (prin1)&lt;BR /&gt;);;end autoarea.lsp&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;&lt;P class="MsoNormal"&gt;&lt;A target="_blank" href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3aareaobjectlink_windows32and64%3aen"&gt;Area Object Link&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addattmod_windows32and64%3aen"&gt;Attribute Modifier&lt;/A&gt; | &lt;A target="_blank" href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addsetup_windows32and64%3aen"&gt;Dwg Setup&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addcalc_windows32and64%3aen"&gt;Feet-Inch Calculator&lt;/A&gt;&lt;SPAN style="font-family: Arial,sans-serif; text-shadow: auto;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3alayerapps_windows32and64%3aen"&gt;Layer Apps&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addlist_windows32and64%3aen"&gt;List on Steroids&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addzmscl_windows32and64%3aen"&gt;VP Zoom Scales&lt;/A&gt; |&lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Home/Index"&gt;Exchange App Store&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 19:55:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642368#M141636</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2015-05-19T19:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642441#M141637</link>
      <description>&lt;P&gt;Perfect.&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 20:59:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642441#M141637</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-19T20:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: AUTOAREA.LSP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642617#M141638</link>
      <description>&lt;P&gt;glad that finally worked out for you...cheers...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;A target="_blank" href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3aareaobjectlink_windows32and64%3aen"&gt;Area Object Link&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addattmod_windows32and64%3aen"&gt;Attribute Modifier&lt;/A&gt; | &lt;A target="_blank" href="http://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addsetup_windows32and64%3aen"&gt;Dwg Setup&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addcalc_windows32and64%3aen"&gt;Feet-Inch Calculator&lt;/A&gt;&lt;SPAN style="font-family: Arial,sans-serif; text-shadow: auto;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3alayerapps_windows32and64%3aen"&gt;Layer Apps&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addlist_windows32and64%3aen"&gt;List on Steroids&lt;/A&gt; | &lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3addzmscl_windows32and64%3aen"&gt;VP Zoom Scales&lt;/A&gt; |&lt;A target="_blank" href="https://apps.exchange.autodesk.com/ACD/en/Home/Index"&gt;Exchange App Store&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 22:54:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autoarea-lsp/m-p/5642617#M141638</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2015-05-19T22:54:03Z</dc:date>
    </item>
  </channel>
</rss>

