<?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: run lisp, script or Macros to select objects without interactiving  with AutoCAD in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11141061#M46206</link>
    <description>&lt;P&gt;It is a mistake, sorry about it. Could you please advise me how to accept your solution? Also, I am wondering if you can add the following part in the beginning,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;set the current layer to 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much in advance, &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&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, 01 May 2022 23:31:50 GMT</pubDate>
    <dc:creator>michaelZCXYL</dc:creator>
    <dc:date>2022-05-01T23:31:50Z</dc:date>
    <item>
      <title>run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133202#M46176</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering if anyone can answer the below question,&lt;/P&gt;&lt;P&gt;How to avoid to interactive with AutoCAD to run lisp, script or Macros to select objects, for example, revision clouds, circle, block, thank you very much in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 18:44:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133202#M46176</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-27T18:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133228#M46177</link>
      <description>can you elaborate on your need, be way more specific, less generic: give an example or ten.</description>
      <pubDate>Wed, 27 Apr 2022 18:51:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133228#M46177</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2022-04-27T18:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133240#M46178</link>
      <description>Hello Pendean,&lt;BR /&gt;Thank you very much for your quick response. I want to write a script to delete all revision clouds or one block for several dwgs, the problem is that I can't use the script to select objects, thanks again.&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[signature_844596839]&lt;BR /&gt;Michael Ru, CAD Operator&lt;BR /&gt;T (236) 521-6900 M (236) 818-8785 | michael@omengineering.ca&lt;BR /&gt;Suite 401 - 533 Smithe Street, Vancouver, BC V6B 6H1&lt;BR /&gt;O'M Engineering Electrical &amp;amp; Electronic Consulting Engineers | &lt;A href="http://www.omengineering.ca" target="_blank"&gt;www.omengineering.ca&lt;/A&gt;&amp;lt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Apr 2022 18:58:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133240#M46178</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-27T18:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133370#M46179</link>
      <description>&lt;P&gt;Here is code to delete revclouds and blocks that match a certain name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:foo (/ nl s)
  ;; Change to your layer name
  (setq nl "NEWLAYERNAMEFORREVCLOUDS")
  (if (setq s (ssget "_X" '((0 . "LWPOLYLINE") (-3 ("RevcloudProps")))))
    (progn (foreach e (mapcar 'cadr (ssnamex s))
	     (entmod (append (entget e) (list (cons 8 nl))))
	     ;; (vl-catch-all-apply 'vla-delete (list (vlax-ename-&amp;gt;vla-object e)))
	   )
	   ;; Make layer not plottable
	   (vla-put-plottable (vlax-ename-&amp;gt;vla-object (tblobjname "layer" nl)) 0)
    )
  )
  ;; Need more code if this block is dynamic and modified
  (if (setq s (ssget "_X" '((0 . "INSERT") (2 . "NAMEOFYOURBLOCK"))))
    (foreach e (mapcar 'cadr (ssnamex s))
      (vl-catch-all-apply 'vla-delete (list (vlax-ename-&amp;gt;vla-object e)))
    )
  )
  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 19:05:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133370#M46179</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-28T19:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11134001#M46180</link>
      <description>&lt;P&gt;Hello Ronjonp,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your quick response. Could you please advise me more detail on how to use it? Do the revision clouds have a name? Can this app delete circle or arc? Thanks again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 02:04:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11134001#M46180</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-28T02:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135249#M46181</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11864060"&gt;@michaelZCXYL&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello Ronjonp,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your quick response. Could you please advise me more detail on how to use it? Do the revision clouds have a name? Can this app delete circle or arc? Thanks again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The code above does not delete circles or arcs, that was not in the initial request. You need to come up with a set of rules to follow and we can delete all kinds of things.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt; Post a sample drawing perhaps?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as how to use the code load it then call using 'FOO'.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 13:28:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135249#M46181</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-28T13:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135748#M46182</link>
      <description>&lt;P&gt;Hello Ronjonp,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It did not work, nothing happened, please see the image below, many thanks.&lt;/P&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="michaelZCXYL_0-1651161808651.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1060869i52AD8E559F78BA96/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michaelZCXYL_0-1651161808651.png" alt="michaelZCXYL_0-1651161808651.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 16:05:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135748#M46182</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-28T16:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135755#M46183</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11864060"&gt;@michaelZCXYL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check your drawing ... the code does not report anything. You also have to modify this to match the name of your block you want to delete.&lt;/P&gt;
&lt;PRE class="lia-code-sample  language-lisp"&gt;&lt;CODE&gt;(2 . "NAMEOFYOURBLOCK")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post a sample drawing too.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 16:08:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135755#M46183</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-28T16:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135759#M46184</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11864060"&gt;@michaelZCXYL&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello Ronjonp,&lt;/P&gt;
&lt;P&gt;It did not work, nothing happened, please see the image below, many thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did your drawing contain revclouds that are LWPOLYINE objects types?&lt;/P&gt;
&lt;P&gt;Did you edit the LISP to include the block name you wish to delete?&lt;/P&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="pendean_0-1651162356264.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1060873i14865097C51E6920/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1651162356264.png" alt="pendean_0-1651162356264.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 16:08:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135759#M46184</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2022-04-28T16:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135761#M46185</link>
      <description>&lt;P&gt;I want to delete revision clouds, it has no name, thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 16:08:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135761#M46185</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-28T16:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135777#M46186</link>
      <description>&lt;P&gt;Yes, it can delete current drawing revision clouds. Could you please advise me how to delete&amp;nbsp;revision clouds on many drawings? thanks a lot.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 16:13:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135777#M46186</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-28T16:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135796#M46187</link>
      <description>&lt;P&gt;Make sure the lisp is loaded on startup then use &lt;A href="https://knowledge.autodesk.com/support/autocad/downloads/caas/downloads/content/autodesk-customization-conversion-tools.html" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;THIS&lt;/STRONG&gt;&lt;/A&gt; tool calling FOO.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 19:09:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135796#M46187</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-28T19:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135831#M46188</link>
      <description>&lt;P&gt;"This tool" ScriptPro 2.0 can only work on Script file. One more question, in fact, it is my initiate request. Is it possible to move revision clouds to other layer for many drawings? Sorry I did not say it clearly in the beginning.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 16:40:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11135831#M46188</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-28T16:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136069#M46189</link>
      <description>&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11864060"&gt;@michaelZCXYL&lt;/a&gt; Pay attention, a couple of obvious (and perhaps new) things for you:&lt;BR /&gt;&lt;BR /&gt;1) FOO.LSP is a file that needs to be placed in a Search path of your AutoCAD session (OPTIONS command, FILES tab).&lt;BR /&gt;2) The folder needs to be added to the TRUSTED list in OPTIONS' FILE tab.&lt;BR /&gt;You create a SCRIP file, also in your AutoCAD session's Search path, that calls FOO.&lt;BR /&gt;You use SCRIPTPRO to run that script, which calls FOO, which runs in each file.&lt;BR /&gt;&lt;BR /&gt;What else do you need to know now that I presume you edited the LISP to name the block(s) you wish to treat too.&lt;BR /&gt;&lt;BR /&gt;TIA</description>
      <pubDate>Thu, 28 Apr 2022 18:07:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136069#M46189</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2022-04-28T18:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136102#M46190</link>
      <description>&lt;P&gt;&lt;SPAN&gt;SCRIPTPRO to run script only , FOO is lisp file, could you please advise me how to run it? thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 18:18:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136102#M46190</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-28T18:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136213#M46191</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11864060"&gt;@michaelZCXYL&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;"This tool" ScriptPro 2.0 can only work on Script file. One more question, in fact, it is my initiate request. Is it possible to move revision clouds to other layer for many drawings? Sorry I did not say it clearly in the beginning.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I updated the code &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11133370#M430536" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;here&lt;/STRONG&gt;&lt;/A&gt; to move revclouds to a layer of your choosing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A script file runs a series of commands on multiple drawings. In this case put the code I gave you in your startup suite and call FOO ( or name it to whatever you want ).&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 19:09:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136213#M46191</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-28T19:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136596#M46192</link>
      <description>&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11864060"&gt;@michaelZCXYL&lt;/a&gt; all a script file does it mimic what you do at the commandline.&lt;BR /&gt;So... &lt;BR /&gt;1) at the commandline you type FOO then hit &amp;lt;enter&amp;gt; to run the solution created for your by @ronjomp&lt;BR /&gt;2) Your script file then would repeat what you typed at the commandline.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Which did you not understand, #1 or #2 please?&lt;BR /&gt;Do you know how a SCRIPT file is created / written? or are we assuming too much right now?&lt;BR /&gt;&lt;BR /&gt;Explain your confusion and inabilities in more detail please.</description>
      <pubDate>Thu, 28 Apr 2022 22:11:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136596#M46192</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2022-04-28T22:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136639#M46193</link>
      <description>&lt;P&gt;Huge thanks both of you! I removed revision clouds to new layer on the current drawing. When I work on multiple drawings, there are two methods for me.&lt;/P&gt;&lt;P&gt;1, using ScriptPro 2.0 for script app.&lt;/P&gt;&lt;P&gt;2. Lisp App has feature to input multiple drawings.&amp;nbsp; Please see attached one of this lisp app. When you call "Bfind", interface will pop up, thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 22:40:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136639#M46193</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-28T22:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136648#M46194</link>
      <description>&lt;P&gt;So far, it is good enough. If&amp;nbsp; the following parts can be added to the App, that would be amazing.&lt;/P&gt;&lt;P&gt;create new layer "clouds", move clouds to clouds layer, freeze clouds layer, thanks a lot. I apologize I did not say it clearly in the beginning, thanks a lot!&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2022 00:24:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136648#M46194</guid>
      <dc:creator>michaelZCXYL</dc:creator>
      <dc:date>2022-04-29T00:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: run lisp, script or Macros to select objects without interactiving  with AutoCAD</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136763#M46195</link>
      <description>&lt;P&gt;Yes can be added, but take a step back and think about what you want past this new request, its frustrating just getting please add this multiple times. Ronjonp is helping you I am sure he would prefer the full request list.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2022 00:25:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/run-lisp-script-or-macros-to-select-objects-without/m-p/11136763#M46195</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2022-04-29T00:25:39Z</dc:date>
    </item>
  </channel>
</rss>

