<?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 Been a long time...   Lisp routine for zoom &amp;gt; object &amp;gt; node in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905269#M31327</link>
    <description>&lt;P&gt;I'm starting with a fresh computer, and for the life of me I can't find my lisp files where I normally backup to.&amp;nbsp; So, I am having to try to recreate them.&amp;nbsp; They are super simple, and I feel like an idiot for not being able to get this working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just want to type "zc" and be able to zoom to the center of a viewport by node.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun c:zc()&lt;BR /&gt;(command “zoom” "center" "node"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like I said, stupid simple.&amp;nbsp; What am I missing?&amp;nbsp; It either does nothing or I get an error for "node".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Apr 2023 18:48:04 GMT</pubDate>
    <dc:creator>jjones1700</dc:creator>
    <dc:date>2023-04-18T18:48:04Z</dc:date>
    <item>
      <title>Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905269#M31327</link>
      <description>&lt;P&gt;I'm starting with a fresh computer, and for the life of me I can't find my lisp files where I normally backup to.&amp;nbsp; So, I am having to try to recreate them.&amp;nbsp; They are super simple, and I feel like an idiot for not being able to get this working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just want to type "zc" and be able to zoom to the center of a viewport by node.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun c:zc()&lt;BR /&gt;(command “zoom” "center" "node"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like I said, stupid simple.&amp;nbsp; What am I missing?&amp;nbsp; It either does nothing or I get an error for "node".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 18:48:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905269#M31327</guid>
      <dc:creator>jjones1700</dc:creator>
      <dc:date>2023-04-18T18:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905290#M31328</link>
      <description>&lt;P&gt;Node is an object snap to a Point object. &amp;nbsp;I assume you don’t want to do that. So what are you trying to zoom to the center of?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 18:55:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905290#M31328</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-04-18T18:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905316#M31329</link>
      <description>&lt;P&gt;You leave yourself in the Zoom command under an Object-snap mode, waiting for a selection of a Point object or Dimension definition point or something that NODE-mode Osnap can snap to.&amp;nbsp; Does it work if you add a pause for that?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(defun c:zc ()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; (command “zoom” "center" "node" pause)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Or not, if it's leaving you at the:&lt;BR /&gt;....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Specify center point: node&lt;BR /&gt;&lt;STRONG&gt;of&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;point, where you can pick a NODE-Osnappable thing.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:02:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905316#M31329</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-04-18T19:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905335#M31330</link>
      <description>&lt;P&gt;I have borders set up with a point/node (centered within it) in model space to draw up various pieces of machinery (not to scale), in various stages of assembly.&amp;nbsp; Depending on what is needed, I go into the viewport and pan to the needed boundary, and then use zoom &amp;gt; center &amp;gt; node, in order to keep things uniform with the other sheets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know, it's bizarre, but it's an everyday thing.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:05:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905335#M31330</guid>
      <dc:creator>jjones1700</dc:creator>
      <dc:date>2023-04-18T19:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905342#M31331</link>
      <description>&lt;P&gt;How’s about zoom center object then use osnap node for you to snap to the border point?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:07:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905342#M31331</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-04-18T19:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905349#M31332</link>
      <description>&lt;P&gt;For some reason, when I add the pause, I now get unknown command "CENTER" and unknown command "NODE".&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:12:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905349#M31332</guid>
      <dc:creator>jjones1700</dc:creator>
      <dc:date>2023-04-18T19:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905362#M31333</link>
      <description>&lt;P&gt;Before the drive crash, I could simply type "zc" and space (enter) and then pick the node and it would center to the node.&amp;nbsp; Wish I could find the original.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:15:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905362#M31333</guid>
      <dc:creator>jjones1700</dc:creator>
      <dc:date>2023-04-18T19:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905370#M31334</link>
      <description>&lt;P&gt;Have you tried&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(defun c:zc ()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; (command “zoom” "center" &amp;nbsp;“on” "node" pause)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:18:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905370#M31334</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-04-18T19:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905385#M31335</link>
      <description>&lt;P&gt;Paulli, that brings up unknown command errors for center, on, and node.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know zoom and center are commands, but I can't figure out how to pass along what would be user input for the osnap.&amp;nbsp; Appreciate the help and suggestions.&amp;nbsp; Just frustrated and I know it's going to be something really stinking simple.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:28:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905385#M31335</guid>
      <dc:creator>jjones1700</dc:creator>
      <dc:date>2023-04-18T19:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905398#M31336</link>
      <description>&lt;P&gt;ok, this should work:&lt;/P&gt;&lt;P&gt;(defun c:zc ()(command"_.Zoom""_O""_node" pause ""))&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:33:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905398#M31336</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-04-18T19:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905417#M31337</link>
      <description>&lt;P&gt;Close!!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I figured it out by changing the "_O" to "_C" in your last suggestion!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This one is going to be backed up right now...&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:43:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905417#M31337</guid>
      <dc:creator>jjones1700</dc:creator>
      <dc:date>2023-04-18T19:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905419#M31338</link>
      <description>&lt;P&gt;Glad to have helped…cheers!!!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 19:45:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905419#M31338</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-04-18T19:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Been a long time...   Lisp routine for zoom &gt; object &gt; node</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905604#M31339</link>
      <description>&lt;P&gt;I'm reminded of something -- I think "center" spelled out [or "cen" shorthand] is taken as an Osnap call, as if you wanted to Osnap to the center of something as a corner of a Zoom window.&amp;nbsp; &lt;STRONG&gt;Try it with just "c" or "_c".&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 21:05:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/been-a-long-time-lisp-routine-for-zoom-gt-object-gt-node/m-p/11905604#M31339</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-04-18T21:05:44Z</dc:date>
    </item>
  </channel>
</rss>

