<?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: How to create menu on one level with &amp;quot;File&amp;quot;, &amp; in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131580#M6675</link>
    <description>You are right, Ralph. Thanks</description>
    <pubDate>Wed, 13 May 2009 09:21:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-05-13T09:21:06Z</dc:date>
    <item>
      <title>How to create menu on one level with "File", "Edit" etc?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131578#M6673</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;My .grc file has next content:&lt;BR /&gt;
&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;'STR#' 32500 "Strings for the Menu" {
/* [   ] */     "Menu name"
/* [   1] */	    "item 1"
/* [   2] */	    "item2"
}
&lt;/PRE&gt;
and menu was placed as submenu of "Options".&lt;BR /&gt;&lt;BR /&gt;How can I move my menu one level up? What can I do with "32500" number?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/DIV&gt;</description>
      <pubDate>Thu, 03 Aug 2023 15:16:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131578#M6673</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-03T15:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create menu on one level with "File", &amp;</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131579#M6674</link>
      <description>&lt;BLOCKQUOTE&gt;equilibrium wrote:&lt;BR /&gt;...menu was placed as submenu of "Options".&lt;BR /&gt;
How can I move my menu one level up? What can I do with "32500" number?&lt;/BLOCKQUOTE&gt;
You can specify the menu position with the &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;APIMenuCodeID&lt;E&gt;&lt;/E&gt; passed with the call to &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Register_Menu&lt;E&gt;&lt;/E&gt;. If I understand your intentions correctly, I think you want &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;MenuCode_UserDef&lt;E&gt;&lt;/E&gt;.</description>
      <pubDate>Tue, 12 May 2009 19:28:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131579#M6674</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2009-05-12T19:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create menu on one level with "File", &amp;</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131580#M6675</link>
      <description>You are right, Ralph. Thanks</description>
      <pubDate>Wed, 13 May 2009 09:21:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131580#M6675</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-13T09:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create menu on one level with "File", &amp;</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131581#M6676</link>
      <description>I was moved my menu on top level and now have next menu:&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;MyMenu
`SubMenu
``SubSubMenu1
``SubSubMenu2
``...
``SubSubMenuN
&lt;/PRE&gt;
But I want to create menu like this:
&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;MyMenu
`SubMenu1
`SubMenu2
`...
`SubMenuN
&lt;/PRE&gt;
One way - it's creation of N 'STR#' sections in my .grc file like this:
&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;'STR#' 32500 "Strings for the Menu" {
/* [   ] */     "MyMenu"
/* [   1] */	    "SubMenuN"
}
&lt;/PRE&gt;
Than register them all and use own MenuHandler for each SubMenu.&lt;BR /&gt;
But it's unwieldy way - I should to create new MenuHandler when add new SubMenu anytime.&lt;BR /&gt;
&lt;BR /&gt;
Can you suggest more acceptable way? Thanks</description>
      <pubDate>Wed, 13 May 2009 09:59:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131581#M6676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-13T09:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to create menu on one level with "File", &amp;</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131582#M6677</link>
      <description>&lt;BLOCKQUOTE&gt;equilibrium wrote:&lt;BR /&gt;I was moved my menu on top level and now have next menu: One way - it's creation of N 'STR#' sections in my .grc file like this:
&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;'STR#' 32500 "Strings for the Menu" {
/* [   ] */     "MyMenu"
/* [   1] */	    "SubMenuN"
}&lt;/PRE&gt;
Than register them all and use own MenuHandler for each SubMenu.&lt;BR /&gt;
But it's unwieldy way - I should to create new MenuHandler when add new SubMenu anytime. Can you suggest more acceptable way? Thanks&lt;/BLOCKQUOTE&gt;
No - that's the way it works.</description>
      <pubDate>Wed, 13 May 2009 14:12:24 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131582#M6677</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2009-05-13T14:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create menu on one level with "File", &amp;</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131583#M6678</link>
      <description>It's really bad to create own description in .grc file for each first level submenu item.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot, Ralph</description>
      <pubDate>Wed, 13 May 2009 14:32:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-create-menu-on-one-level-with-quot-File-quot-quot-Edit/m-p/131583#M6678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-13T14:32:42Z</dc:date>
    </item>
  </channel>
</rss>

