<?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: Creating toolbars of the same width etc like rappa tools in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7528929#M11770</link>
    <description>&lt;P&gt;Just close it I think.&amp;nbsp; I may be incorrect about what it is, I don't get it on my work machine but I did on my home machine at one point in the past.&amp;nbsp; You could check your startup scripts folder to see what is in there, may be a plugin or something that needs it.&amp;nbsp; (Body objects maybe?)&amp;nbsp; Can you expand the borders to see whats in it?&amp;nbsp; (Blank I imagine.)&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
    <pubDate>Wed, 08 Nov 2017 22:57:50 GMT</pubDate>
    <dc:creator>Alfred.DeFlaminis</dc:creator>
    <dc:date>2017-11-08T22:57:50Z</dc:date>
    <item>
      <title>Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7495313#M11746</link>
      <description>&lt;P&gt;would love to create toolbars vertically like i attached but all of them the same width as rappa tools, is this possible?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 23:20:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7495313#M11746</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-26T23:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7497717#M11747</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3359076"&gt;@mitviz&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's likely he used Python or some other scripting language to make those menus, not the standard maxscript.&amp;nbsp; So yes it's possible but it would likely requires some knowledge of programming.&amp;nbsp; I'll move this thread to the programming forum, you may get more information there.&amp;nbsp; This is one area where I am weak and cannot offer much assistance, regretfully.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 18:47:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7497717#M11747</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-10-27T18:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498076#M11748</link>
      <description>&lt;P&gt;Not a toolbar but a custom-built UI with a set of buttons and actions bound to their 'on pressed' event (and potentially more events, like the right-click), you can start with something like this (use .NET buttons instead if you want additional styling possibilities).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;rollout test ""
(
	button btnClose "Press To Close" width:125
	button btn1 "Acton 1" width:125
	button btn2 "Acton 2" width:125
	button btn3 "Acton 3" width:125

	on btnClose pressed do
	(
		cui.UnRegisterDialogBar ::test
		destroyDialog ::test
	)
)

createDialog test 150 500 style:#(#style_toolwindow, #style_sysmenu)
cui.RegisterDialogBar test style:#(#cui_dock_left, #cui_dock_right, #cui_floatable, #cui_handles)
cui.DockDialogBar test #cui_dock_left&lt;/PRE&gt;
&lt;P&gt;If all you wanted is to use the actions from customize UI, you can drag the tools on a regular toolbar, right click all the buttons that display an icon and edit their appearance to use text instead, and under Genera Preferences set the Fixed Width Text Buttons value to your liking.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 20:51:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498076#M11748</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2017-10-27T20:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498165#M11749</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1275790"&gt;@Swordslayer&lt;/a&gt;, what a great post.&amp;nbsp; Good looking out!&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 21:39:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498165#M11749</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-10-27T21:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498240#M11750</link>
      <description>&lt;P&gt;wow, am not into any scripting etc myself really, i just wanted to create a toolbar like normal in max, drag my command to the toolbar and put them vertically stacked in max to one side and have them be the same size, well mine currently looks like this, some smaller some larger, for the most part its ok but was just checking&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 22:22:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498240#M11750</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-27T22:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498262#M11751</link>
      <description>&lt;P&gt;also maybe i can post this here, idk, when i open max, another little window pops up, see the attached, it started recently but&amp;nbsp; i use so many plugins idk&amp;nbsp;how to tell which one is doing this&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 22:36:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498262#M11751</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-27T22:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498307#M11752</link>
      <description>&lt;P&gt;Hard to say&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3359076"&gt;@mitviz&lt;/a&gt;, do you use a tablet?&amp;nbsp; I believe the tablet overlay for some manufacturers looks like this.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you just want a vertical regular style toolbar with button labels you can just dock a tool bar on the side to get it.&amp;nbsp; However the text may get cut off, in which case what you'll want to do is go to&amp;nbsp;&lt;SPAN&gt;Customize &amp;gt;&amp;nbsp;Preferences&amp;nbsp;&amp;gt;&amp;nbsp;General tab.&amp;nbsp; In the UI DIsplay section you can uncheck "Fixed Width Text Buttons" or set it to a higher number.&amp;nbsp; You'll need to wiggle the toolbar for the changes to take effect.&amp;nbsp; Would that work?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 23:16:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498307#M11752</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-10-27T23:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498314#M11753</link>
      <description>&lt;P&gt;aha!! i didn't even know this existed! i will go this route but i have to test it tomorrow to see after i finish this scene, thanks for this tip! i might have to then for these toolbars with icons turn them to text to have them all how i want, is that possible?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 23:21:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498314#M11753</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-27T23:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498324#M11754</link>
      <description>&lt;P&gt;Sure it's easy, just right click on the button and click "Edit Button Appearance".&amp;nbsp; Then check Text button instead of Image Button.&amp;nbsp; Please let me know how it goes!&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 23:28:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498324#M11754</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-10-27T23:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498340#M11755</link>
      <description>&lt;P&gt;for sure i will, thanks a bunch!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 23:40:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498340#M11755</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-27T23:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498342#M11756</link>
      <description>&lt;P&gt;Happy to help bud, thanks for your awesome attitude!&amp;nbsp; Enjoy your weekend.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 23:43:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498342#M11756</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-10-27T23:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498343#M11757</link>
      <description>&lt;P&gt;thanks buddy! your really a big help!!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 23:44:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7498343#M11757</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-27T23:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7503446#M11758</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3359076"&gt;@mitviz&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just wanted to follow up here, any luck?&amp;nbsp;&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 00:47:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7503446#M11758</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-10-31T00:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7505212#M11759</link>
      <description>&lt;P&gt;o thanks for following up! i didn't&amp;nbsp;yet actually, i am in the middle of a never-ending&amp;nbsp;project and was scared to move anything until its done &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 15:20:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7505212#M11759</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-31T15:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7505936#M11760</link>
      <description>&lt;P&gt;No problem&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3359076"&gt;@mitviz&lt;/a&gt;, thanks for the update.&amp;nbsp; Take your time and I'll be here when you're ready.&amp;nbsp; Thanks!&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 18:48:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7505936#M11760</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-10-31T18:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7506553#M11761</link>
      <description>&lt;P&gt;will do!&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 22:35:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7506553#M11761</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-10-31T22:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7522404#M11762</link>
      <description>&lt;P&gt;so after working on this i have to say 3ds max has some issues with some toolbars, namely the vray toolbar and some others that have icons, when you try to change them to a text based toolbar it stil keeps its icons and resizes, however, it wants to and some toolbars when moved do odd things, the vray toolbar cant be simply pushed to the far left, it stays under other toolbars, 3ds max needs more effective ways to work with toolbars&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 02:44:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7522404#M11762</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-11-07T02:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7525452#M11763</link>
      <description>&lt;P&gt;Thanks for the update&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3359076"&gt;@mitviz&lt;/a&gt;.&amp;nbsp; There's not much I can do about 3rd party toolbars.&amp;nbsp; You might be able to ask Chaosgroup or iToo about it.&amp;nbsp; I appreciate the feedback.&amp;nbsp; It might be worth submitting a &lt;A href="http://forums.autodesk.com/t5/3ds-max-ideas/idb-p/164" target="_blank"&gt;Feature Request&lt;/A&gt; for more toolbar options.&amp;nbsp; If you do, please post the link here so others can easily find it.&amp;nbsp; Thanks!&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 22:07:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7525452#M11763</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-11-07T22:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7525482#M11764</link>
      <description>&lt;P&gt;ahh ok, here there someone already requested more options but i would think after all these years these things would have been a thing of the past for all autodesk softwares&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/3ds-max-ideas/better-toolbar-buttons-customization/idc-p/7525479#M2660" target="_blank"&gt;https://forums.autodesk.com/t5/3ds-max-ideas/better-toolbar-buttons-customization/idc-p/7525479#M2660&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 22:17:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7525482#M11764</guid>
      <dc:creator>mitviz</dc:creator>
      <dc:date>2017-11-07T22:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating toolbars of the same width etc like rappa tools</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7525565#M11765</link>
      <description>&lt;P&gt;Thank you for posting the link, I have voted here on this issue.&amp;nbsp; Looks like it's already under consideration so that's great.&amp;nbsp; I appreciate the feedback and the link.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 23:06:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/creating-toolbars-of-the-same-width-etc-like-rappa-tools/m-p/7525565#M11765</guid>
      <dc:creator>Alfred.DeFlaminis</dc:creator>
      <dc:date>2017-11-07T23:06:30Z</dc:date>
    </item>
  </channel>
</rss>

