<?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: &amp;quot;Memory limits ...&amp;quot; dialog suppression. in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8970643#M7933</link>
    <description>&lt;P&gt;Hello alexcgt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;yes, we agree this is a problem and have entered a change request to get it fixed. In the meantime, the solutions you have already referenced (from denis, etc.) should be decent workarounds. Thanks to &lt;SPAN class="UserName lia-user-name lia-user-rank-Employee lia-component-message-view-widget-author-username"&gt;&lt;A class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1634609" target="_self"&gt;&lt;SPAN class="login-bold"&gt;denisT.MaxDoctor&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt; to point it out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you for reporting this.&lt;/P&gt;
&lt;P&gt;kevin&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Aug 2019 17:34:58 GMT</pubDate>
    <dc:creator>kevinvandecar</dc:creator>
    <dc:date>2019-08-16T17:34:58Z</dc:date>
    <item>
      <title>"Memory limits ..." dialog suppression.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8965700#M7930</link>
      <description>&lt;P&gt;I know this question been asked before but I also know the question has not been answered.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following dialog appears on opening scenes:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dialog-memory.png" style="width: 413px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/666826i5963642FF3374A79/image-size/large?v=v2&amp;amp;px=999" role="button" title="dialog-memory.png" alt="dialog-memory.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The dialog does not get suppressed the usual way, i.e.&lt;/P&gt;&lt;PRE&gt;loadMaxFile quiet:True allowPrompts:False&lt;/PRE&gt;&lt;P&gt;or&lt;/P&gt;&lt;PRE&gt;SetQuietMode True&lt;/PRE&gt;&lt;P&gt;The dialog also shows on PC running &lt;EM&gt;Backburner Server&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am aware of this solution:&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/3ds-max-programming/suppress-prompts-when-opening-files/td-p/8165068" target="_blank"&gt;https://forums.autodesk.com/t5/3ds-max-programming/suppress-prompts-when-opening-files/td-p/8165068&lt;/A&gt;&lt;BR /&gt;But it's not the &lt;EM&gt;proper&lt;/EM&gt; solution as far as I'm concerned, although it does work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is:&lt;/P&gt;&lt;P&gt;is there a &lt;EM&gt;proper&lt;/EM&gt; way to suppress this dialog?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If not then I ask Autodesk to open a support case on the subject.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2019 13:08:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8965700#M7930</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-14T13:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: "Memory limits ..." dialog suppression.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8966580#M7931</link>
      <description>&lt;P&gt;as i understand it's the Hair and&amp;nbsp;Fur plugin warning.. and you have an object with this modifier applied.&lt;/P&gt;&lt;P&gt;it is at the developer's discretion to follow the "silent mode rule" or not. (show or not any pop-up dialog (modal or not)). you (or MAX developers) can't do much to prevent "third-party" dialog from pop-up.&lt;/P&gt;&lt;P&gt;the most common solution i know is to use &lt;STRONG&gt;DialogMonitorOps&lt;/STRONG&gt; to catch a specified window and close it after its pop-up.&lt;/P&gt;&lt;P&gt;i'm pretty sure there are many examples on this or another MAX programming forums.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but i can give another example... it closes "Preference Settings" modal dialog (it's easy to test):&lt;/P&gt;&lt;PRE&gt;DialogMonitorOPS.unRegisterNotification id:#memory_limits_watcher
-- DialogMonitorOPS.enabled = off

(
	fn notification = 
	(
		hwnd = DialogMonitorOPS.GetWindowHandle()
		if (UIAccessor.isWindow hwnd) and matchpattern (UIAccessor.GetWindowText hwnd) pattern:"preference settings*" do -- pattern:"memory limits*" do
		(
			UIAccessor.PressDefaultButton()
		)
		true
	)
	enabled = DialogMonitorOPS.enabled
	DialogMonitorOPS.RegisterNotification notification id:#memory_limits_watcher
	DialogMonitorOPS.enabled = on
)&lt;/PRE&gt;&lt;P&gt;in your case just change the dialog's title text pattern (see commented in my code)&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can put it in any max's "startup" place .. (i don't know where you prefer)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS. of course there are much "fancy" ways to catch this dialog (by .DLL name, for example) but that's just an idea.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2019 19:38:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8966580#M7931</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2019-08-14T19:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: "Memory limits ..." dialog suppression.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8969583#M7932</link>
      <description>&lt;P&gt;Hey, Denis!&lt;BR /&gt;Appreciate the help.&lt;BR /&gt;I was heading into that direction myself but if something doesn't work as expected I have a habit of bugging Autodesk with it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I realize that Autodesk cannot control 3rd party developers but the thing is that this particular message shows up on &lt;EM&gt;clean installation of 3dsMax&lt;/EM&gt; -- no additional plugins installed.&lt;BR /&gt;And if this thing is in any way related to &lt;STRONG&gt;Hair.dlo&lt;/STRONG&gt; then this particular plugin is listed as a &lt;STRONG&gt;Standard 3dsMax Plugin&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;It &lt;EM&gt;should &lt;/EM&gt;obey silent modes and whatnot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Autodesk?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 09:01:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8969583#M7932</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-16T09:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: "Memory limits ..." dialog suppression.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8970643#M7933</link>
      <description>&lt;P&gt;Hello alexcgt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;yes, we agree this is a problem and have entered a change request to get it fixed. In the meantime, the solutions you have already referenced (from denis, etc.) should be decent workarounds. Thanks to &lt;SPAN class="UserName lia-user-name lia-user-rank-Employee lia-component-message-view-widget-author-username"&gt;&lt;A class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1634609" target="_self"&gt;&lt;SPAN class="login-bold"&gt;denisT.MaxDoctor&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt; to point it out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you for reporting this.&lt;/P&gt;
&lt;P&gt;kevin&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 17:34:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8970643#M7933</guid>
      <dc:creator>kevinvandecar</dc:creator>
      <dc:date>2019-08-16T17:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: "Memory limits ..." dialog suppression.</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8973117#M7934</link>
      <description>&lt;P&gt;Thank you for the reply, Kevin.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 08:10:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/quot-memory-limits-quot-dialog-suppression/m-p/8973117#M7934</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-19T08:10:49Z</dc:date>
    </item>
  </channel>
</rss>

