<?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 Dock floating UI to a specific location in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7976904#M10648</link>
    <description>&lt;P&gt;I have a tools menu I've made and I'd like it to be docked in a specific location when I load Max.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I do this?&lt;BR /&gt;&lt;BR /&gt;If you look at this gif you can see that the floating ui is loaded when Max does, I want to to stay where its docked at the end of the gif.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Dock_UI.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/496077iB984C6CD6B1FA210/image-size/large?v=v2&amp;amp;px=999" role="button" title="Dock_UI.gif" alt="Dock_UI.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 03 May 2018 11:14:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-05-03T11:14:18Z</dc:date>
    <item>
      <title>Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7976904#M10648</link>
      <description>&lt;P&gt;I have a tools menu I've made and I'd like it to be docked in a specific location when I load Max.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I do this?&lt;BR /&gt;&lt;BR /&gt;If you look at this gif you can see that the floating ui is loaded when Max does, I want to to stay where its docked at the end of the gif.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Dock_UI.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/496077iB984C6CD6B1FA210/image-size/large?v=v2&amp;amp;px=999" role="button" title="Dock_UI.gif" alt="Dock_UI.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 11:14:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7976904#M10648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-03T11:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7989438#M10649</link>
      <description>&lt;P&gt;At first glance, you will probably need to create a custom .mnu file or have the code for the ui form part of a start up script that is executed as max opens or just after max has opened. We do a similar thing where we have our own toolbars, ui elements and other custom workspaces based around our toolset. You may even be able to have a modified max file as the default file to open with that has those elements stored as callbacks or some other method.&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 09:08:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7989438#M10649</guid>
      <dc:creator>malcomarmstrong</dc:creator>
      <dc:date>2018-05-09T09:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7989705#M10650</link>
      <description>&lt;P&gt;Thank you for your reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 11:22:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7989705#M10650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-09T11:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7998836#M10651</link>
      <description>&lt;P&gt;This example docks a basic GUI to the left-side, you can adjust the style to enable/disable features and docking position. Hope this helps?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;global gui_handle
(
	fn gui_destroy = (
		try (cui.unregisterDialogBar gui_handle) catch()
		try (closeRolloutFloater gui_handle) catch()
		gui_handle = undefined
	)
	
	if (gui_handle == undefined) then (
		rollout gui_rollout1 "Title : Rollout1" (
			label gui_label "My Label #1..." pos:[5,5] width:100 height:20
		)
		
		rollout gui_rollout2 "Title : Rollout2" (
			label gui_label "My Label #2..." pos:[5,5] width:100 height:20
		)
		
		gui_handle = newRolloutFloater "Title : Script" 244 400
		addRollout gui_rollout1 gui_handle rolledUp:false border:true
		addRollout gui_rollout2 gui_handle rolledUp:false border:true
		cui.RegisterDialogBar gui_handle minSize:[0, 0] maxSize:[250, 400] style:#(#style_titlebar, #cui_floatable, #cui_dock_left, #cui_dock_right, #cui_handles) escapeEnable:false
		cui.dockDialogBar gui_handle #cui_dock_left
	)
	else ( gui_destroy() )
)&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 May 2018 00:47:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/7998836#M10651</guid>
      <dc:creator>blakestone</dc:creator>
      <dc:date>2018-05-14T00:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8003236#M10652</link>
      <description>&lt;P&gt;Thank you for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking further into this it doesnt seem like you can create tabs as part of the UI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unless anyone else has any suggestions?&lt;/P&gt;</description>
      <pubDate>Tue, 15 May 2018 14:41:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8003236#M10652</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-15T14:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8003677#M10653</link>
      <description>&lt;P&gt;leave the user a way how to organize&amp;nbsp;his/her UI. for example, I do not like it when someone does it for me.&lt;/P&gt;&lt;P&gt;give a reason why you can do it better &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 May 2018 17:28:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8003677#M10653</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2018-05-15T17:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8005163#M10654</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1634609"&gt;@denisT.MaxDoctor&lt;/a&gt;wrote:&lt;BR /&gt;&lt;P&gt;leave the user a way how to organize&amp;nbsp;his/her UI. for example, I do not like it when someone does it for me.&lt;/P&gt;&lt;P&gt;give a reason why you can do it better &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I completely agree, however in this case I'm the user &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks for your reply.&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 08:31:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8005163#M10654</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-16T08:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8005204#M10655</link>
      <description>&lt;P&gt;was what i posted helpful at all?&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 08:48:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8005204#M10655</guid>
      <dc:creator>blakestone</dc:creator>
      <dc:date>2018-05-16T08:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8005991#M10656</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1273707"&gt;@blakestone&lt;/a&gt;wrote:&lt;BR /&gt;&lt;P&gt;was what i posted helpful at all?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It was thank you.&amp;nbsp;&lt;BR /&gt;I still cant find a solution to tabbing ui though. But for now what you posted was useful.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 14:01:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8005991#M10656</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-16T14:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dock floating UI to a specific location</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8008576#M10657</link>
      <description>&lt;P&gt;Perhaps then, a custom python or .Net interface parented to the Max window will help if you cant get tabbed interfaces to work. Do you have any images of what you want it to look like? By that, I mean when I am doing UIs to go into any particular application, I mock up a UI image to show how I want it, but thats just a working practice of mine, so just asking if thats something you do too.&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 11:51:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/dock-floating-ui-to-a-specific-location/m-p/8008576#M10657</guid>
      <dc:creator>malcomarmstrong</dc:creator>
      <dc:date>2018-05-17T11:51:12Z</dc:date>
    </item>
  </channel>
</rss>

