<?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: Changing Matlab&#8217;s Command Window colors</title> <atom:link href="http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/feed/" rel="self" type="application/rss+xml" /><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/</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: Raj</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-63863</link> <dc:creator>Raj</dc:creator> <pubDate>Thu, 01 Dec 2011 19:12:49 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-63863</guid> <description>Hi Yair.. I just saw your reply.. Thanks for the help! :))Cheers!</description> <content:encoded><![CDATA[<p>Hi Yair.. I just saw your reply.. Thanks for the help! <img
src='http://undocumentedmatlab.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p><p>Cheers!</p> ]]></content:encoded> </item> <item><title>By: Raj</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-63862</link> <dc:creator>Raj</dc:creator> <pubDate>Thu, 01 Dec 2011 19:11:40 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-63862</guid> <description>OK.. The following code worked:
&lt;pre lang=&quot;matlab&quot;&gt;
jTextArea.setBackground(java.awt.Color.lightGray);
jTextArea.setBackground(java.awt.Color(.95,.95,.95));
set(jTextArea,&#039;Background&#039;,&#039;lightGray&#039;);
set(jTextArea,&#039;Background&#039;,[.95,.95,.95]);
&lt;/pre&gt;&lt;pre&gt;
I was using &quot;gray&quot; instead of &quot;lightGray&quot;.. :)&lt;/pre&gt;</description> <content:encoded><![CDATA[<p>OK.. The following code worked:</p><div
class="wp_syntax"><div
class="code"><pre class="matlab" style="font-family:monospace;">jTextArea.<span style="">setBackground</span><span style="color: #080;">&#40;</span>java.<span style="">awt</span>.<span style="">Color</span>.<span style="">lightGray</span><span style="color: #080;">&#41;</span>;
jTextArea.<span style="">setBackground</span><span style="color: #080;">&#40;</span>java.<span style="">awt</span>.<span style="">Color</span><span style="color: #080;">&#40;</span>.95,.95,.95<span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span>;
<span style="color: #0000FF;">set</span><span style="color: #080;">&#40;</span>jTextArea,<span style="color:#A020F0;">'Background'</span>,<span style="color:#A020F0;">'lightGray'</span><span style="color: #080;">&#41;</span>;
<span style="color: #0000FF;">set</span><span style="color: #080;">&#40;</span>jTextArea,<span style="color:#A020F0;">'Background'</span>,<span style="color: #080;">&#91;</span>.95,.95,.95<span style="color: #080;">&#93;</span><span style="color: #080;">&#41;</span>;</pre></div></div><pre>
I was using "gray" instead of "lightGray".. <img src='http://undocumentedmatlab.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </pre>]]></content:encoded> </item> <item><title>By: Yair Altman</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-63859</link> <dc:creator>Yair Altman</dc:creator> <pubDate>Thu, 01 Dec 2011 18:57:08 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-63859</guid> <description>@Raj - try &lt;code&gt;java.awt.Color(0.827,0.827,0.827)&lt;/code&gt;</description> <content:encoded><![CDATA[<p>@Raj &#8211; try <code>java.awt.Color(0.827,0.827,0.827)</code></p> ]]></content:encoded> </item> <item><title>By: Raj</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-63858</link> <dc:creator>Raj</dc:creator> <pubDate>Thu, 01 Dec 2011 18:54:07 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-63858</guid> <description>Hi,I ran the java commands as above. But only the color of the function browser (thin strip on the left side of the command window) changed. It became yellow and I couldn&#039;t get it back to gray. So I had to change it to white. Maybe it is a compatibility issue with the new Matlab.I don&#039;t know java so if you can help out in how to revert back to the original gray (light gray) color, that would be awesome.Also, isn&#039;t the range of java.awt.Color from 0-255.
Because gray is 211-211-211. And I am not able to enter that. Even 0.83 (211/255) didn&#039;t work.I would appreciate any help.
Thanks for the tutorial! :)</description> <content:encoded><![CDATA[<p>Hi,</p><p>I ran the java commands as above. But only the color of the function browser (thin strip on the left side of the command window) changed. It became yellow and I couldn&#8217;t get it back to gray. So I had to change it to white. Maybe it is a compatibility issue with the new Matlab.</p><p>I don&#8217;t know java so if you can help out in how to revert back to the original gray (light gray) color, that would be awesome.</p><p>Also, isn&#8217;t the range of java.awt.Color from 0-255.<br
/> Because gray is 211-211-211. And I am not able to enter that. Even 0.83 (211/255) didn&#8217;t work.</p><p>I would appreciate any help.<br
/> Thanks for the tutorial! <img
src='http://undocumentedmatlab.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Anubhav Jain</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-57209</link> <dc:creator>Anubhav Jain</dc:creator> <pubDate>Tue, 20 Sep 2011 15:59:21 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-57209</guid> <description>Hi,
I am facing problem in hiliting a line that is not connected to any block.Can anyone suggest me a way to do that .
Regards,
Anubhav Jain.</description> <content:encoded><![CDATA[<p>Hi,<br
/> I am facing problem in hiliting a line that is not connected to any block.Can anyone suggest me a way to do that .<br
/> Regards,<br
/> Anubhav Jain.</p> ]]></content:encoded> </item> <item><title>By: Jakub</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-57108</link> <dc:creator>Jakub</dc:creator> <pubDate>Mon, 19 Sep 2011 09:17:59 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-57108</guid> <description>you saved my eyes, thanks</description> <content:encoded><![CDATA[<p>you saved my eyes, thanks</p> ]]></content:encoded> </item> <item><title>By: Yair Altman</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-39900</link> <dc:creator>Yair Altman</dc:creator> <pubDate>Wed, 13 Apr 2011 23:30:43 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-39900</guid> <description>Take a look at this recent blog article: http://undocumentedmatlab.com/blog/transparent-matlab-figure-window/</description> <content:encoded><![CDATA[<p>Take a look at this recent blog article: <a
href="http://undocumentedmatlab.com/blog/transparent-matlab-figure-window/" rel="nofollow">http://undocumentedmatlab.com/blog/transparent-matlab-figure-window/</a></p> ]]></content:encoded> </item> <item><title>By: Yair Altman</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-39655</link> <dc:creator>Yair Altman</dc:creator> <pubDate>Mon, 11 Apr 2011 19:36:29 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-39655</guid> <description>@Jan - I believe that the figure title bar colors cannot be modified without hacking into the underlying OS. This is because Matlab uses java to draw the figure window, and Java in turn uses the underlying OS to set the appearance.However, you can customize your &lt;a target=&quot;_blank&quot; href=&quot;http://undocumentedmatlab.com/blog/modifying-matlab-look-and-feel/&quot; rel=&quot;nofollow&quot;&gt;Look-and-Feel&lt;/a&gt; if you are adventurous...</description> <content:encoded><![CDATA[<p>@Jan &#8211; I believe that the figure title bar colors cannot be modified without hacking into the underlying OS. This is because Matlab uses java to draw the figure window, and Java in turn uses the underlying OS to set the appearance.</p><p>However, you can customize your <a
target="_blank" href="http://undocumentedmatlab.com/blog/modifying-matlab-look-and-feel/" rel="nofollow">Look-and-Feel</a> if you are adventurous&#8230;</p> ]]></content:encoded> </item> <item><title>By: Jan</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-39654</link> <dc:creator>Jan</dc:creator> <pubDate>Mon, 11 Apr 2011 19:18:39 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-39654</guid> <description>Hi,I&#039;ve been trying to change the Title name string color to say green and the figure title bar color to say yellow so they match the company colors.  Haven&#039;t had much luck as neither is an option in Figure Properties.  Did find that both follow the Windows Display Properties.  Looked into the &quot;matlab.prf&quot; file but did not see any obvious fields to edit.Is it possible to edit the before mentioned colors?Thanks,Jan</description> <content:encoded><![CDATA[<p>Hi,</p><p>I&#8217;ve been trying to change the Title name string color to say green and the figure title bar color to say yellow so they match the company colors.  Haven&#8217;t had much luck as neither is an option in Figure Properties.  Did find that both follow the Windows Display Properties.  Looked into the &#8220;matlab.prf&#8221; file but did not see any obvious fields to edit.</p><p>Is it possible to edit the before mentioned colors?</p><p>Thanks,</p><p>Jan</p> ]]></content:encoded> </item> <item><title>By: Yair Altman</title><link>http://undocumentedmatlab.com/blog/changing-matlab-command-window-colors/#comment-12167</link> <dc:creator>Yair Altman</dc:creator> <pubDate>Wed, 07 Jul 2010 16:43:21 +0000</pubDate> <guid
isPermaLink="false">http://undocumentedmatlab.com/?p=3#comment-12167</guid> <description>@Egon - see &lt;a target=_&quot;blank&quot; href=&quot;http://undocumentedmatlab.com/blog/modifying-matlab-look-and-feel/&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;</description> <content:encoded><![CDATA[<p>@Egon &#8211; see <a
target=_"blank" href="http://undocumentedmatlab.com/blog/modifying-matlab-look-and-feel/" rel="nofollow">here</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 06:02:26 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: enhanced
Cache key:          blog/changing-matlab-command-window-colors/feed/_index.xml_gzip
Caching:            enabled
Status:             not cached
Creation Time:      0.734s
Header info:
X-Pingback:         http://undocumentedmatlab.com/blog/xmlrpc.php
Set-Cookie:         wpgb_visit_last_php-default=1328792546; expires=Fri, 08-Feb-2013 13:02:26 GMT; path=/
Link:               <http://undocumentedmatlab.com/?p=3>; rel=shortlink
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Thu, 09 Feb 2012 13:02:26 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Thu, 09 Feb 2012 14:02:26 GMT
Pragma:             public
Cache-Control:      public, must-revalidate, proxy-revalidate
Etag:               553152e3520ca0f0b1ab7c923979a9ee
Content-Encoding:   gzip
-->
