<?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: Additional uicontrol tooltip hacks	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=additional-uicontrol-tooltip-hacks</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Tue, 23 Aug 2016 13:44:10 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.3</generator>
	<item>
		<title>
		By: Maxandre		</title>
		<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-386388</link>

		<dc:creator><![CDATA[Maxandre]]></dc:creator>
		<pubDate>Tue, 23 Aug 2016 13:44:10 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=1114#comment-386388</guid>

					<description><![CDATA[I would like to add that if you want to have the tooltip string displayed for the maximum amount of time (i.e. disappear in a very long time), do:
&lt;pre lang=&quot;matlab&quot;&gt;
tm = javax.swing.ToolTipManager.sharedInstance; %static method to get ToolTipManager object
long_time_to_disappear = intmax(&#039;int32&#039;); %anything more than that will fail, because it seems that DismissDelay is typed as a signed 32-bit integer
javaMethodEDT(&#039;setDismissDelay&#039;,tm,long_time_to_disappear); %set the dismiss delay to max_int_32, around 2 million seconds
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>I would like to add that if you want to have the tooltip string displayed for the maximum amount of time (i.e. disappear in a very long time), do:</p>
<pre lang="matlab">
tm = javax.swing.ToolTipManager.sharedInstance; %static method to get ToolTipManager object
long_time_to_disappear = intmax('int32'); %anything more than that will fail, because it seems that DismissDelay is typed as a signed 32-bit integer
javaMethodEDT('setDismissDelay',tm,long_time_to_disappear); %set the dismiss delay to max_int_32, around 2 million seconds
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Maxandre		</title>
		<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-386387</link>

		<dc:creator><![CDATA[Maxandre]]></dc:creator>
		<pubDate>Tue, 23 Aug 2016 13:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=1114#comment-386387</guid>

					<description><![CDATA[Thank you very much for this tip on how to modify the tooltip timeout on matlab ! It help me a lot for my GUI.]]></description>
			<content:encoded><![CDATA[<p>Thank you very much for this tip on how to modify the tooltip timeout on matlab ! It help me a lot for my GUI.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Editable combo-box &#124; Undocumented Matlab		</title>
		<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-280083</link>

		<dc:creator><![CDATA[Editable combo-box &#124; Undocumented Matlab]]></dc:creator>
		<pubDate>Wed, 09 Oct 2013 15:54:13 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=1114#comment-280083</guid>

					<description><![CDATA[[...] if you do decide to make the standard Matlab uicontrol editable, read here for a nice customization that I posted several years [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] if you do decide to make the standard Matlab uicontrol editable, read here for a nice customization that I posted several years [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Multi-line tooltips &#124; Undocumented Matlab		</title>
		<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-60859</link>

		<dc:creator><![CDATA[Multi-line tooltips &#124; Undocumented Matlab]]></dc:creator>
		<pubDate>Thu, 03 Nov 2011 02:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=1114#comment-60859</guid>

					<description><![CDATA[[...] In this blog, I have already posted several articles about how to tweak tooltip contents (here, here, and here). Today I would like to expand on one of the aspects that were already covered, [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] In this blog, I have already posted several articles about how to tweak tooltip contents (here, here, and here). Today I would like to expand on one of the aspects that were already covered, [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-10910</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 19:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=1114#comment-10910</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-10886&quot;&gt;ZHANJIE&lt;/a&gt;.

@Zhanjie - you can easily convert your editbox into a listbox, and you already have a solution for that...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-10886">ZHANJIE</a>.</p>
<p>@Zhanjie &#8211; you can easily convert your editbox into a listbox, and you already have a solution for that&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ZHANJIE		</title>
		<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-10886</link>

		<dc:creator><![CDATA[ZHANJIE]]></dc:creator>
		<pubDate>Wed, 09 Jun 2010 20:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=1114#comment-10886</guid>

					<description><![CDATA[I want to show tooltips for multi-line editbox. There are several rows in the box (vector with different length). My goal is when I move the mouse on certain row, I am able to show something like: &#039;this is the 3rd row&#039;. I notice you can do this for listbox. Is there anyway I can do it for edit box.
Thanks a lot!]]></description>
			<content:encoded><![CDATA[<p>I want to show tooltips for multi-line editbox. There are several rows in the box (vector with different length). My goal is when I move the mouse on certain row, I am able to show something like: &#8216;this is the 3rd row&#8217;. I notice you can do this for listbox. Is there anyway I can do it for edit box.<br />
Thanks a lot!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John Marcovici		</title>
		<link>https://undocumentedmatlab.com/articles/additional-uicontrol-tooltip-hacks#comment-7354</link>

		<dc:creator><![CDATA[John Marcovici]]></dc:creator>
		<pubDate>Sat, 20 Feb 2010 00:26:34 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=1114#comment-7354</guid>

					<description><![CDATA[I had previously notice that tooltips did not display for &quot;edit&quot; boxes that were disabled. This frustrated me because I wanted to use the &quot;edit&quot; style (nicely bordered boxes) for static text only, but I needed tooltips too. Looks a good solution... thanks for posting.]]></description>
			<content:encoded><![CDATA[<p>I had previously notice that tooltips did not display for &#8220;edit&#8221; boxes that were disabled. This frustrated me because I wanted to use the &#8220;edit&#8221; style (nicely bordered boxes) for static text only, but I needed tooltips too. Looks a good solution&#8230; thanks for posting.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
