<?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: Setting system tray popup messages</title> <atom:link href="http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/feed/" rel="self" type="application/rss+xml" /><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/</link> <description>Charting Matlab's unsupported hidden underbelly</description> <lastBuildDate>Thu, 09 Feb 2012 09:23:08 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.1.1</generator> <item><title>By: fahad</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-64752</link> <dc:creator>fahad</dc:creator> <pubDate>Thu, 08 Dec 2011 09:01:54 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-64752</guid> <description>thanks for the code and the explanation with picures</description> <content:encoded><![CDATA[<p>thanks for the code and the explanation with picures</p> ]]></content:encoded> </item> <item><title>By: Yair Altman</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-56459</link> <dc:creator>Yair Altman</dc:creator> <pubDate>Sat, 10 Sep 2011 16:44:23 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-56459</guid> <description>@Mike - thanks - couldn&#039;t ask for anything more</description> <content:encoded><![CDATA[<p>@Mike &#8211; thanks &#8211; couldn&#8217;t ask for anything more</p> ]]></content:encoded> </item> <item><title>By: Mike</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-56441</link> <dc:creator>Mike</dc:creator> <pubDate>Sat, 10 Sep 2011 12:31:59 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-56441</guid> <description>That looks like a &quot;bug.&quot; I&#039;ll ask them to fix it, but the earliest it would be done would be 12b, if at all...</description> <content:encoded><![CDATA[<p>That looks like a &#8220;bug.&#8221; I&#8217;ll ask them to fix it, but the earliest it would be done would be 12b, if at all&#8230;</p> ]]></content:encoded> </item> <item><title>By: Yair Altman</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-56366</link> <dc:creator>Yair Altman</dc:creator> <pubDate>Fri, 09 Sep 2011 14:42:25 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-56366</guid> <description>@Alexander - using menuItem.setEnabled() is indeed safe and valid, and in fact better than using set(...). Your fix for using CallbackProperties is also correct - this is described in &lt;a target=&quot;_blank&quot; href=&quot;http://undocumentedmatlab.com/blog/uicontrol-callbacks/#memory_leak&quot; rel=&quot;nofollow&quot;&gt;another article&lt;/a&gt;.Unfortunately, I do not have a solution for the popup message errors at this time. If I do, I will post it on this page.</description> <content:encoded><![CDATA[<p>@Alexander &#8211; using menuItem.setEnabled() is indeed safe and valid, and in fact better than using set(&#8230;). Your fix for using CallbackProperties is also correct &#8211; this is described in <a
target="_blank" href="http://undocumentedmatlab.com/blog/uicontrol-callbacks/#memory_leak" rel="nofollow">another article</a>.</p><p>Unfortunately, I do not have a solution for the popup message errors at this time. If I do, I will post it on this page.</p> ]]></content:encoded> </item> <item><title>By: Alexander</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-56364</link> <dc:creator>Alexander</dc:creator> <pubDate>Fri, 09 Sep 2011 14:16:19 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-56364</guid> <description>Update:Going through the implementation in 2010b I found a second problematic point. In line 232, the &quot;ActionPerformedCallback&quot; is set. This also drops an warning. Now I found on of your infos on using set/get with core java object in the entry on Uicontrol callbacks. Is it thus reasonable to change&lt;pre lang=&quot;matlab&quot;&gt;
set(menuItem,&#039;ActionPerformedCallback&#039;,get(thisItem,&#039;Callback&#039;));
&lt;/pre&gt;to&lt;pre lang=&quot;matlab&quot;&gt;
set(handle(menuItem,&#039;CallbackProperties&#039;),&#039;ActionPerformedCallback&#039;,get(thisItem,&#039;Callback&#039;));
&lt;/pre&gt;If so, I&#039;d suggest to make an update of the FileExchange version (also including the comments made in the uisplitpanel entry). If not, I&#039;m really interested in a workaround.Alexander</description> <content:encoded><![CDATA[<p>Update:</p><p>Going through the implementation in 2010b I found a second problematic point. In line 232, the &#8220;ActionPerformedCallback&#8221; is set. This also drops an warning. Now I found on of your infos on using set/get with core java object in the entry on Uicontrol callbacks. Is it thus reasonable to change</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;"><span style="color: #0000FF;">set</span><span style="color: #080;">&#40;</span>menuItem,<span style="color:#A020F0;">'ActionPerformedCallback'</span>,<span style="color: #0000FF;">get</span><span style="color: #080;">&#40;</span>thisItem,<span style="color:#A020F0;">'Callback'</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span>;</pre></div></div><p>to</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;"><span style="color: #0000FF;">set</span><span style="color: #080;">&#40;</span>handle<span style="color: #080;">&#40;</span>menuItem,<span style="color:#A020F0;">'CallbackProperties'</span><span style="color: #080;">&#41;</span>,<span style="color:#A020F0;">'ActionPerformedCallback'</span>,<span style="color: #0000FF;">get</span><span style="color: #080;">&#40;</span>thisItem,<span style="color:#A020F0;">'Callback'</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span>;</pre></div></div><p>If so, I&#8217;d suggest to make an update of the FileExchange version (also including the comments made in the uisplitpanel entry). If not, I&#8217;m really interested in a workaround.</p><p>Alexander</p> ]]></content:encoded> </item> <item><title>By: Alexander</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-56360</link> <dc:creator>Alexander</dc:creator> <pubDate>Fri, 09 Sep 2011 12:58:11 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-56360</guid> <description>Dear Yair,as all the others I&#039;d like to thank you for the wonderful systray tool. It&#039;s really great.While I implemented it these days in an old 2007b installation, it worked without any problem. (At least after having included the solution for the messages as pointed out in your uisplitpane entry).Now I&#039;m trying to migrate to 2010bSP1 and stumbled over two problems:a) Java complained about setting the popup entry enabled using your line&lt;pre lang=&quot;matlab&quot;&gt;set(menuItem,&#039;Enabled&#039;,get(thisItem,&#039;Enable&#039;));&lt;/pre&gt;As I&#039;m not familiar with java: Is the workaround&lt;pre lang=&quot;matlab&quot;&gt;menuItem.setEnabled(strcmp(get(thisItem,&#039;Enable&#039;),&#039;on&#039;));&lt;/pre&gt;valid?b) I get the same error message as Peter mentioned above when trying to access the popup menu:&lt;pre lang=&quot;matlab&quot;&gt;
Exception in thread &quot;AWT-EventQueue-0&quot; java.lang.ClassCastException: java.awt.TrayIcon cannot be cast to java.awt.Component
at com.mathworks.widgets.tooltip.ToolTipAndComponentAWTListener.mouseInTipComponent(ToolTipAndComponentAWTListener.java:177)
at com.mathworks.widgets.tooltip.ToolTipAndComponentAWTListener.eventDispatched(ToolTipAndComponentAWTListener.java:128)
at java.awt.Toolkit$SelectiveAWTEventListener.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit.notifyAWTEventListeners(Unknown Source)
at java.awt.TrayIcon.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
&lt;/pre&gt;As I learned, this is an Java 1.6 issue. Is there a workaround on the Matlab-level for systray available? Or what else could be done?Best wishes,Alexander</description> <content:encoded><![CDATA[<p>Dear Yair,</p><p>as all the others I&#8217;d like to thank you for the wonderful systray tool. It&#8217;s really great.</p><p>While I implemented it these days in an old 2007b installation, it worked without any problem. (At least after having included the solution for the messages as pointed out in your uisplitpane entry).</p><p>Now I&#8217;m trying to migrate to 2010bSP1 and stumbled over two problems:</p><p>a) Java complained about setting the popup entry enabled using your line</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;"><span style="color: #0000FF;">set</span><span style="color: #080;">&#40;</span>menuItem,<span style="color:#A020F0;">'Enabled'</span>,<span style="color: #0000FF;">get</span><span style="color: #080;">&#40;</span>thisItem,<span style="color:#A020F0;">'Enable'</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span>;</pre></div></div><p>As I&#8217;m not familiar with java: Is the workaround</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;">menuItem.<span style="">setEnabled</span><span style="color: #080;">&#40;</span><span style="color: #0000FF;">strcmp</span><span style="color: #080;">&#40;</span><span style="color: #0000FF;">get</span><span style="color: #080;">&#40;</span>thisItem,<span style="color:#A020F0;">'Enable'</span><span style="color: #080;">&#41;</span>,<span style="color:#A020F0;">'on'</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span>;</pre></div></div><p>valid?</p><p>b) I get the same error message as Peter mentioned above when trying to access the popup menu:</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;">Exception in thread &quot;AWT-EventQueue-<span style="color: #33f;">0</span>&quot; java.<span style="">lang</span>.<span style="">ClassCastException</span><span style="color: #F0F;">:</span> java.<span style="">awt</span>.<span style="">TrayIcon</span> cannot be cast to java.<span style="">awt</span>.<span style="">Component</span>
	at com.<span style="">mathworks</span>.<span style="">widgets</span>.<span style="">tooltip</span>.<span style="">ToolTipAndComponentAWTListener</span>.<span style="">mouseInTipComponent</span><span style="color: #080;">&#40;</span>ToolTipAndComponentAWTListener.<span style="">java</span><span style="color: #F0F;">:</span><span style="color: #33f;">177</span><span style="color: #080;">&#41;</span>
	at com.<span style="">mathworks</span>.<span style="">widgets</span>.<span style="">tooltip</span>.<span style="">ToolTipAndComponentAWTListener</span>.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>ToolTipAndComponentAWTListener.<span style="">java</span><span style="color: #F0F;">:</span><span style="color: #33f;">128</span><span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$SelectiveAWTEventListener.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">Toolkit</span>.<span style="">notifyAWTEventListeners</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">TrayIcon</span>.<span style="">dispatchEvent</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">EventQueue</span>.<span style="">dispatchEvent</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpOneEventForFilters</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEventsForFilter</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEventsForHierarchy</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEvents</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEvents</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
	at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">run</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span></pre></div></div><p>As I learned, this is an Java 1.6 issue. Is there a workaround on the Matlab-level for systray available? Or what else could be done?</p><p>Best wishes,</p><p>Alexander</p> ]]></content:encoded> </item> <item><title>By: Setting status-bar text &#124; Undocumented Matlab</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-11421</link> <dc:creator>Setting status-bar text &#124; Undocumented Matlab</dc:creator> <pubDate>Wed, 23 Jun 2010 10:09:55 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-11421</guid> <description>[...] Note: Users interested in non-intrusive status-bar messages, may also be interested in another non-intrusive messaging mechanism which I have described some months ago: Setting system tray popup messages. [...]</description> <content:encoded><![CDATA[<p>[...] Note: Users interested in non-intrusive status-bar messages, may also be interested in another non-intrusive messaging mechanism which I have described some months ago: Setting system tray popup messages. [...]</p> ]]></content:encoded> </item> <item><title>By: Peter</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-11138</link> <dc:creator>Peter</dc:creator> <pubDate>Wed, 16 Jun 2010 09:54:10 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-11138</guid> <description>Dear YairThis looks like a great utility. Unfortunately it does not work properly on my system (Matlab 2010a, Windows XP, Java 1.6.0_12-b04). To start with I call&lt;pre lang=&quot;matlab&quot;&gt;
hIcon = systray(&#039;C:\Program Files\MATLAB\R2010a\toolbox\matlab\icons\help_ex.png&#039;);
&lt;/pre&gt;Afterwards, the only command that works is the set command for deletion. Setting message pop-ups and the like does not work (does not yield any error messages, but does not affect the icon).Furthermore, if I click the icon in the system tray I get the exception pasted below.Have you any suggestions on how to get around this. I have tried the exception fix you link to on the uisplitpane post, but that does not help either. Thanks for a great site and lots of cool applicationsPeter
&lt;pre lang=&quot;matlab&quot;&gt;
Exception in thread “AWT-EventQueue-0″ java.lang.ClassCastException:
java.awt.TrayIcon cannot be cast to java.awt.Component
at com.mathworks.widgets.tooltip.ToolTipAndComponentAWTListener.mouseInTipComponent(ToolTipAndComponentAWTListener.java:175)
at com.mathworks.widgets.tooltip.ToolTipAndComponentAWTListener.eventDispatched(ToolTipAndComponentAWTListener.java:125)
at java.awt.Toolkit$SelectiveAWTEventListener.eventDispatched(Unknown Source)
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
...
at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
at java.awt.Toolkit.notifyAWTEventListeners(Unknown Source)
at java.awt.TrayIcon.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
&lt;/pre&gt;</description> <content:encoded><![CDATA[<p>Dear Yair</p><p>This looks like a great utility. Unfortunately it does not work properly on my system (Matlab 2010a, Windows XP, Java 1.6.0_12-b04). To start with I call</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;">hIcon = systray<span style="color: #080;">&#40;</span><span style="color:#A020F0;">'C:\Program Files\MATLAB\R2010a\toolbox\matlab\icons\help_ex.png'</span><span style="color: #080;">&#41;</span>;</pre></div></div><p>Afterwards, the only command that works is the set command for deletion. Setting message pop-ups and the like does not work (does not yield any error messages, but does not affect the icon).</p><p>Furthermore, if I click the icon in the system tray I get the exception pasted below.</p><p>Have you any suggestions on how to get around this. I have tried the exception fix you link to on the uisplitpane post, but that does not help either. Thanks for a great site and lots of cool applications</p><p>Peter</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;">Exception in thread “AWT-EventQueue-<span style="color: #33f;">0</span>″ java.<span style="">lang</span>.<span style="">ClassCastException</span><span style="color: #F0F;">:</span> 
java.<span style="">awt</span>.<span style="">TrayIcon</span> cannot be cast to java.<span style="">awt</span>.<span style="">Component</span>
at com.<span style="">mathworks</span>.<span style="">widgets</span>.<span style="">tooltip</span>.<span style="">ToolTipAndComponentAWTListener</span>.<span style="">mouseInTipComponent</span><span style="color: #080;">&#40;</span>ToolTipAndComponentAWTListener.<span style="">java</span><span style="color: #F0F;">:</span><span style="color: #33f;">175</span><span style="color: #080;">&#41;</span>
at com.<span style="">mathworks</span>.<span style="">widgets</span>.<span style="">tooltip</span>.<span style="">ToolTipAndComponentAWTListener</span>.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>ToolTipAndComponentAWTListener.<span style="">java</span><span style="color: #F0F;">:</span><span style="color: #33f;">125</span><span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">Toolkit</span>$SelectiveAWTEventListener.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
<span style="color: #F0F;">...</span>
<span style="">at</span> java.<span style="">awt</span>.<span style="">Toolkit</span>$ToolkitEventMulticaster.<span style="">eventDispatched</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">Toolkit</span>.<span style="">notifyAWTEventListeners</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">TrayIcon</span>.<span style="">dispatchEvent</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">EventQueue</span>.<span style="">dispatchEvent</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpOneEventForFilters</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEventsForFilter</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEventsForHierarchy</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEvents</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">pumpEvents</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span>
at java.<span style="">awt</span>.<span style="">EventDispatchThread</span>.<span style="">run</span><span style="color: #080;">&#40;</span>Unknown Source<span style="color: #080;">&#41;</span></pre></div></div>]]></content:encoded> </item> <item><title>By: Yair Altman</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-10785</link> <dc:creator>Yair Altman</dc:creator> <pubDate>Sat, 05 Jun 2010 18:19:48 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-10785</guid> <description>@andandgui - did you even read the SoundVolume help?SoundVolume is not a variable that you can assign like SoundVolume=10, but a function that accepts input parameters like SoundVolume (1.0) and it only accepts values between 0.0-1.0 so 10 is not a valid value.Also, next time, please post the question in the relevant page (http://undocumentedmatlab.com/blog/updating-speaker-sound-volume/) - your question has nothing to do with this page.</description> <content:encoded><![CDATA[<p>@andandgui &#8211; did you even read the SoundVolume help?</p><p>SoundVolume is not a variable that you can assign like SoundVolume=10, but a function that accepts input parameters like SoundVolume (1.0) and it only accepts values between 0.0-1.0 so 10 is not a valid value.</p><p>Also, next time, please post the question in the relevant page (<a
href="http://undocumentedmatlab.com/blog/updating-speaker-sound-volume/" rel="nofollow">http://undocumentedmatlab.com/blog/updating-speaker-sound-volume/</a>) &#8211; your question has nothing to do with this page.</p> ]]></content:encoded> </item> <item><title>By: andandgui</title><link>http://undocumentedmatlab.com/blog/setting-system-tray-popup-messages/#comment-10767</link> <dc:creator>andandgui</dc:creator> <pubDate>Fri, 04 Jun 2010 19:29:58 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=130#comment-10767</guid> <description>i couldn&#039;t run SoundVolume function on Matlab.. When i write SoundVolume=10; then nothing happens .. How can i run the SoundVolume function which is written athttp://undocumentedmatlab.com/blog/updating-speaker-sound-volume/</description> <content:encoded><![CDATA[<p>i couldn&#8217;t run SoundVolume function on Matlab.. When i write SoundVolume=10; then nothing happens .. How can i run the SoundVolume function which is written at</p><p><a
href="http://undocumentedmatlab.com/blog/updating-speaker-sound-volume/" rel="nofollow">http://undocumentedmatlab.com/blog/updating-speaker-sound-volume/</a></p> ]]></content:encoded> </item> </channel> </rss>

<!-- W3 Total Cache: Minify debug info:
Engine:             disk: basic
Theme:              b7666
Template:           single
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: undocumentedmatlab.com @ 2012-02-09 05:44:51 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: enhanced
Cache key:          blog/setting-system-tray-popup-messages/feed/_index.xml_gzip
Caching:            enabled
Status:             not cached
Creation Time:      0.661s
Header info:
X-Pingback:         http://undocumentedmatlab.com/blog/xmlrpc.php
Set-Cookie:         wpgb_visit_last_php-default=1328791491; expires=Fri, 08-Feb-2013 12:44:51 GMT; path=/
Link:               <http://undocumentedmatlab.com/?p=130>; rel=shortlink
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Thu, 09 Feb 2012 12:44:51 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Thu, 09 Feb 2012 13:44:51 GMT
Pragma:             public
Cache-Control:      public, must-revalidate, proxy-revalidate
Etag:               e10ae0fd866f63ee3afaaf769f4c016f
Content-Encoding:   gzip
-->
