<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: More dialogs than you can shake a stick at</title>
	<atom:link href="http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/</link>
	<description>Mike works on the MATLAB Desktop team</description>
	<lastBuildDate>Sun, 12 Feb 2012 04:03:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6737</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 14 Dec 2009 18:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6737</guid>
		<description>@Jonas,

 We try to use native or native-like dialogs wherever we can. There are technical limitations on why those dialogs appear so different, but we are working on them. There is no supported way to modify uigetfile to use the other file dialog.</description>
		<content:encoded><![CDATA[<p>@Jonas,</p>
<p> We try to use native or native-like dialogs wherever we can. There are technical limitations on why those dialogs appear so different, but we are working on them. There is no supported way to modify uigetfile to use the other file dialog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6735</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Mon, 14 Dec 2009 18:12:51 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6735</guid>
		<description>On Macs, uigetfile and uigetdir apparently call different versions of file pickers: only with uigetdir does one get the left-hand panel with the directory shortcuts. It is rather annoying that these shortcuts are not available with uigetfile.

Is there a particular reason why it should not be possible to have the shortcuts available with uigetfile? Is it possible to modify the file picker that is called by uigetfile?</description>
		<content:encoded><![CDATA[<p>On Macs, uigetfile and uigetdir apparently call different versions of file pickers: only with uigetdir does one get the left-hand panel with the directory shortcuts. It is rather annoying that these shortcuts are not available with uigetfile.</p>
<p>Is there a particular reason why it should not be possible to have the shortcuts available with uigetfile? Is it possible to modify the file picker that is called by uigetfile?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yair Altman</title>
		<link>http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6393</link>
		<dc:creator>Yair Altman</dc:creator>
		<pubDate>Mon, 03 Aug 2009 20:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6393</guid>
		<description>One of the nice features in msgbox, that I found most users are not aware of, is the fact that msgbox supports Tex markup. This enables messages in a variety/combination of fonts, colors, symbols etc. While documented, it is regrettable that such a useful feature is hidden/implied in the last sentence or two of the msgbox doc page. I would suggest adding a simple example and a screenshot to the doc page, that would immediately show this feature&#039;s importance.

For those interested, the text properties are a corollary of the fact that under the hood, msgbox is simply a resized figure with hidden axes containing the icon image and text. This text handle can be modified during msgbox creation as indicated in the doc page, or after creation using set(findall(hMsgbox,&#039;type&#039;,&#039;text&#039;), ...). For example:

&lt;pre&gt;
hMsgbox = msgbox(&#039;simple text&#039;);
hMsgText = findall(hMsgbox,&#039;type&#039;,&#039;text&#039;);
newMsgStr = &#039;\color{red}\fontsize{14}\bf\it No !!!&#039;;
set(hMsgText, &#039;Interpreter&#039;,&#039;tex&#039;, &#039;string&#039;,newMsgStr);
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>One of the nice features in msgbox, that I found most users are not aware of, is the fact that msgbox supports Tex markup. This enables messages in a variety/combination of fonts, colors, symbols etc. While documented, it is regrettable that such a useful feature is hidden/implied in the last sentence or two of the msgbox doc page. I would suggest adding a simple example and a screenshot to the doc page, that would immediately show this feature&#8217;s importance.</p>
<p>For those interested, the text properties are a corollary of the fact that under the hood, msgbox is simply a resized figure with hidden axes containing the icon image and text. This text handle can be modified during msgbox creation as indicated in the doc page, or after creation using set(findall(hMsgbox,&#8217;type&#8217;,'text&#8217;), &#8230;). For example:</p>
<pre>
hMsgbox = msgbox('simple text');
hMsgText = findall(hMsgbox,'type','text');
newMsgStr = '\color{red}\fontsize{14}\bf\it No !!!';
set(hMsgText, 'Interpreter','tex', 'string',newMsgStr);
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6392</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 03 Aug 2009 19:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6392</guid>
		<description>Petter, 

 I will forward your suggestion on to the message box developers. Remember thought that these dialogs do not have to be modal.</description>
		<content:encoded><![CDATA[<p>Petter, </p>
<p> I will forward your suggestion on to the message box developers. Remember thought that these dialogs do not have to be modal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petter</title>
		<link>http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6391</link>
		<dc:creator>Petter</dc:creator>
		<pubDate>Mon, 03 Aug 2009 18:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2009/08/03/more-dialogs-than-you-can-shake-a-stick-at/#comment-6391</guid>
		<description>My suggest you remove the minimize button on the dialogs in the first groups. Message boxes usually don&#039;t have a minimize button.</description>
		<content:encoded><![CDATA[<p>My suggest you remove the minimize button on the dialogs in the first groups. Message boxes usually don&#8217;t have a minimize button.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

