<?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: Help on the get-item function in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443385#M834</link>
    <description>Tanks a lot&lt;BR /&gt;</description>
    <pubDate>Fri, 25 Apr 2025 01:51:06 GMT</pubDate>
    <dc:creator>eula</dc:creator>
    <dc:date>2025-04-25T01:51:06Z</dc:date>
    <item>
      <title>Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442764#M827</link>
      <description>&lt;P&gt;Can someone tell me why the following routine doesn't work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun PopMenu-MenuBar-p (name / mbar i found)&lt;BR /&gt;(setq mbar (vla-get-Menubar (vlax-get-Acad-object)) i 0)&lt;BR /&gt;(while (and (not found) (&amp;lt; i (1- (vla-get-count mbar))))&lt;BR /&gt;(if (= (strcase name) (strcase (vla-get-name (get-item mbar i))))&lt;BR /&gt;(setq found T)&lt;BR /&gt;)&lt;BR /&gt;(setq i (1+ i))&lt;BR /&gt;)&lt;BR /&gt;(vlax-release-object mbar)&lt;BR /&gt;found&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 17:11:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442764#M827</guid>
      <dc:creator>eula</dc:creator>
      <dc:date>2025-04-24T17:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442780#M828</link>
      <description>&lt;P&gt;AutoLisp has no&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (get-item)&lt;/STRONG&gt; &lt;/FONT&gt;function.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 17:23:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442780#M828</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2025-04-24T17:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442813#M829</link>
      <description>How can I replace that function?&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Apr 2025 17:45:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442813#M829</guid>
      <dc:creator>eula</dc:creator>
      <dc:date>2025-04-24T17:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442872#M830</link>
      <description>&lt;P&gt;Is your purpose to retrieve a command from a toolbar?&lt;/P&gt;&lt;P&gt;This link should provide you some examples&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://mac.bb-mac.com/help/books/lsp/Visual%20Lisp%20Example/onmenubar.htm" target="_blank"&gt;http://mac.bb-mac.com/help/books/lsp/Visual%20Lisp%20Example/onmenubar.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 18:31:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13442872#M830</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-04-24T18:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443065#M831</link>
      <description>Thanks, the previous reference was very helpful. Could you give me a reference for creating panels and tabs?&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Apr 2025 20:19:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443065#M831</guid>
      <dc:creator>eula</dc:creator>
      <dc:date>2025-04-24T20:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443198#M832</link>
      <description>&lt;P&gt;not sure if this can be done using lisp but here's an example using dot net to add an text box in the ribbon:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.keanw.com/2011/09/adding-a-textbox-to-autocads-ribbon-using-net.html" target="_blank"&gt;https://www.keanw.com/2011/09/adding-a-textbox-to-autocads-ribbon-using-net.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 22:23:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443198#M832</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-04-24T22:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443381#M833</link>
      <description>&lt;P&gt;There is a lot of youtube videos out there about editing ribbons using the "CUI" option, Custom POP &amp;amp; Toolbar menu's can be made using Notepad. The ribbon is contained within a zipped CUIX file, it has multiple XML files in that zipped file, making a new ribbon menu is not straight forward from an external process. Copy a CUIX and change its file type to zip and can then look inside it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 01:46:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443381#M833</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-04-25T01:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help on the get-item function</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443385#M834</link>
      <description>Tanks a lot&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Apr 2025 01:51:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-on-the-get-item-function/m-p/13443385#M834</guid>
      <dc:creator>eula</dc:creator>
      <dc:date>2025-04-25T01:51:06Z</dc:date>
    </item>
  </channel>
</rss>

