active questions tagged color - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T21:28:47Z http://stackoverflow.com/feeds/tag/color http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1904384/java-directcolormodel-vs-indexcolormodel-when-dealing-with-alphas 0 Java DirectColorModel vs. IndexColorModel when dealing with alphas Jon 2009-12-14T23:58:26Z 2009-12-15T18:30:50Z <p>I have a BufferedImage that I get that has an IndexColorModel. I then wish to apply an AffineTransform with AffineTransformOP in order to create a transformed version of displayImage.</p> <p>Here's a code snippet:</p> <pre><code>int type = isRGB() ? AffineTransformOp.TYPE_BILINEAR : AffineTransformOp.TYPE_NEAREST_NEIGHBOR; AffineTransformOp op = new AffineTransformOp(atx, type); displayImage = op.filter(displayImage, null); </code></pre> <p>I'm running this with many images, and from an earlier post I discovered that if I set the transform type to bilinear, then I was running out of memory because I was getting an image back with a DirectColorModel. However, this DirectColorModel had a correct alpha channel (when I drew the image an a green background after translating it, I could see green around the whole image). When I set the interpolation type to nearest neighbor, pixels above and to the left of the image appear black no matter what the background is. I'm assuming this means that the alpha is not getting set.</p> <p>Can anyone tell me how to correctly set the alpha channel with an IndexColorModel, or change the AffineTransformOP parameters such that I get an IndexColorModel with the correct alpha?</p> <p>Thanks!!</p> <p>EDIT: Here is the desired effect, with <code>AffineTransformOp.TYPE_BINLINEAR</code>: <img src="http://i.imgur.com/ZOatg.jpg" alt="alt text"></p> <p>Here is the effect that I'm seeing with <code>AffineTransformOp.TYPE_NEAREST_NEIGHBOR</code>: <img src="http://i.imgur.com/vjA24.jpg" alt="alt text"></p> <p>The whole background is initially painted green for effect and in both cases the image is drawn at position (0, 0).</p> http://stackoverflow.com/questions/1908183/color-of-hyperlink-in-iphone 0 color of hyperlink in iphone dasha 2009-12-15T15:26:04Z 2009-12-15T15:26:04Z <p>Hi everyone, is there a way to change hyperlink color in situations when UITextView and, for example, </p> <p>.dataDetectorTypes = UIDataDetectorTypePhoneNumber; </p> <p>are used?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/578813/richtextbox-color-selected-lines 2 RichTextBox color selected lines Picflight 2009-02-23T18:47:53Z 2009-12-14T10:22:39Z <p>Hello,</p> <p>I am new to windows Forms. I am using VS 2008, C# to write a RichTextBox. I want to be able to color each line with a different color as I write to the RichTextBox. Can someone point me to samples. Thanks</p> <pre><code>foreach (string file in myfiles) { // As I process my files // richTextBox1.Text += "My processing results"; if(file == "somefileName") { // Color above entered line or enter new colored line } } </code></pre> http://stackoverflow.com/questions/1896408/how-to-centre-silverlight-elements-relative-to-each-other 1 How to Centre Silverlight Elements relative to each other? RoguePlanetoid 2009-12-13T12:49:34Z 2009-12-13T20:49:56Z <p>I have an Ellipse and a TextBlock that I want to be Centred relative to each other - ie the TextBlock shows in the Centre of the Ellipse no matter the content eg. its says 88 (like a Bingo Ball) and the Ellipse is the Ball itself - and the number shows in the centre of this ball.</p> <p>How to I accomplish this in Silverlight, where the sizes are not fixed, as if possible I want the Ellipse and TextBlock to be the relative size of their parent - which I cannot seem to do in Silverlight either. </p> <p>Related to this problem is I cannot find the code behind equivelent for "LimeGreen" the colour, which can be set in XAML but not in Code, where only a few Colours are available the in the Color class?</p> http://stackoverflow.com/questions/1892020/mixing-two-rgb-color-vectors-to-get-resultant 0 Mixing two RGB color vectors to get resultant yos 2009-12-12T02:15:07Z 2009-12-12T04:20:46Z <p>I am trying to mix two source RGB vectors to create a third "resultant vector" that is an intuitive mix of the first two. </p> <p>Ideally, I would be able to emulate "real paint mixing characteristics", but for simplicity, I am trying to find a method where the resultant looks intuitively like what you'd get from combining the two source rgb's.</p> <p>minimally, these characteristics:<br /> RED + BLACK = DARK RED<br /> RED + WHITE = LIGHT RED<br /></p> <p>optimally, also with real paint characteristics:<br /> RED + BLUE = PURPLE<br /> RED + YELLOW = ORANGE<br /> (etc)<br /></p> <p>--</p> <p>I am currently doing this the "lazy way" by adding the two source RGB vectors/255, then normalizing (and multiplying by 255). So, using this: [Red = &lt;1,0,0> * 255] + [Blue = &lt;0,0,1> * 255] gives Magenta=&lt;1,0,1>/sqrt(2) * 255, though the other colors are less intuitive or even visible... I need a better method! Please help :-)</p> http://stackoverflow.com/questions/1890103/change-syntax-color-in-vim 2 Change syntax color in vim? unholysampler 2009-12-11T18:47:12Z 2009-12-11T21:22:30Z <p>I have syntax highlighting on, but comments are set to dark blue. This hard for me to read against a black terminal. How do I change it so that the comments are colored green instead?</p> http://stackoverflow.com/questions/1889309/changing-the-color-of-graphics-in-flex-3 0 Changing the color of graphics in flex 3? Ms. Becks 2009-12-11T16:46:42Z 2009-12-11T16:46:42Z <p>Hi,</p> <p>I have built a simple image gallery using svg files that I have created in Adobe Illustrator. The images populate in a panel at the bottom of the application and when the user clicks on an image, the selected image pops up in a pop-up window above said panel.</p> <p>That said, I am having some trouble finding out how I would be able to let the user change the color of the image selected. These are all scalable vector images. Ideally, I would like the user to be able to change the color of the fill inside specific pieces of the graphics. For instance, if I am to use a graphic of a human head as an example, the skin color would need to be changeable, as well as the eye color, hair color, lip color, etc. Or if I were to use a three color logo as an example, each of the colored pieces of the logo would need to be changeable.</p> <p>Can anyone help me figure out how to do this?</p> <p>Thanks a bunch in advance for any assistance you can offer!</p> <p>Ms. Becks</p> http://stackoverflow.com/questions/1887151/opengl-light-problem 0 opengl light problem.. ken 2009-12-11T10:23:55Z 2009-12-11T10:34:16Z <p>I have loaded an object, and when I draw the object, I set the color to green.. After drawing the object, I draw lines in red.</p> <p>It all worked out fine. The problem arise when I input lighting properties. When I create a light source, everything where the light projects becomes white. Why does the lighting over writes my color? And how do I solve this problem?</p> <p>Thanks in advance..</p> http://stackoverflow.com/questions/1787589/using-colors-in-calculated-member 0 using colors in calculated member adriana 2009-11-24T03:28:21Z 2009-12-11T10:04:46Z <p>Hi, Im using this query in MDX for a calculate measure </p> <p>topcount(nonempty([StatusPlanes].[Status].Status.members,[Measures].[Planes]),1)(0).member_caption </p> <p>this will bring me this result</p> <p>Dimension1 Measure Center 1 'Status 1' ---> i want this text blue Center 2 'Status 2' ---> i want this text in red Center 3 'Status 3' Center 4 'Status 2'</p> <p>the thing I want to do is to add some color depending on the status... is this possible in mdx???</p> <p>thank you in advance</p> <p>Adriana</p> http://stackoverflow.com/questions/1884815/change-color-of-dotted-border-on-button 1 Change color of dotted border on button Phoexo 2009-12-10T23:21:57Z 2009-12-10T23:47:19Z <p>I have a problem with a button in one of my forms, when a user clicks the button, it shows this black dotted border inside it. I would like to remove this, but I don't know how. I haven't set this border in the CSS...</p> <p><img src="http://i48.tinypic.com/2mwwjf8.png" alt="Button"></p> <p>((For those wondering; the caption means "search"))</p> <p><hr></p> <p>I searched some time ago, but with "dashed" instead of "dotted" and therefore found nothing. I searched with "dotted" now and found <a href="http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links">this</a>, sorry, but is there any way to change the color of this border? (I think this only applies to firefox?)</p> http://stackoverflow.com/questions/1884540/adobe-color-profiles-color-spaces-how-is-it-possible-that-this-works 0 Adobe Color Profiles/Color Spaces, how is it possible that this works? leeand00 2009-12-10T22:30:19Z 2009-12-10T22:37:39Z <p>I'm learning about Color Profiles/Color Spaces/Monitor Color Management Profiles and I was just wondering how any of that justified considering the fact that I could throw the entire color anything off by adjusting the brightness and contrast of my monitor?</p> <p>Additionally there are things like lighting in the place where your monitor resides. I don't understand what makes it possible to know that the colors that you are looking at on your monitor are accurate. I really don't have any idea where to start (considering I obviously can't even get the terminology right in the first place...:-p)</p> http://stackoverflow.com/questions/1880439/how-to-change-the-color-of-a-link-button-permanently-on-clicking-the-link-button 0 How to change the color of a link button permanently on clicking the link button once? Angeline Aarthi 2009-12-10T11:44:04Z 2009-12-10T13:18:27Z <p>Hi, I have a link button as a column of my datagrid in my application. Currently I have the rollover color as Red and selected color as Blue.</p> <pre><code>&lt;mx:DataGrid id="contentDataGrid" dataProvider="{model.filteredCollection}" width="100%" horizontalScrollPolicy="off" sortableColumns="true" rowCount="10"&gt; &lt;mx:columns&gt; &lt;mx:DataGridColumn headerText="Select" textAlign="center" dataField="{data.shouldSelect}" width="50" editorDataField="selected" rendererIsEditor="false"&gt; &lt;mx:itemRenderer&gt; &lt;mx:Component&gt; &lt;mx:CheckBox selected="{data.shouldSelect}" change="data.shouldSelect = selected"/&gt; &lt;/mx:Component&gt; &lt;/mx:itemRenderer&gt; &lt;/mx:DataGridColumn&gt; &lt;mx:DataGridColumn headerText="Sender" dataField="originator"/&gt; &lt;mx:DataGridColumn headerText="Description" dataField="description"&gt; &lt;mx:itemRenderer&gt; &lt;mx:Component&gt; &lt;mx:LinkButton label="{data.description}" click="outerDocument.onClick(event)" textDecoration="underline" textRollOverColor="Red" textSelectedColor="Blue"/&gt; &lt;/mx:Component&gt; &lt;/mx:itemRenderer&gt; &lt;/mx:DataGridColumn&gt; &lt;/mx:columns&gt; &lt;/mx:DataGrid&gt; </code></pre> <p>On clicking the link, another page is opened. When I close that page, and return back to this screen, the blue color does not remain. It changes back to black color. How to retain the color as Blue , once a link has been clicked?</p> http://stackoverflow.com/questions/1879892/how-to-create-itext-pdf-with-cmy-colors-only 0 How to create iText PDF with CMY colors only GHad 2009-12-10T09:46:04Z 2009-12-10T09:46:04Z <p>Hi,</p> <p>I need to create pdfs with iText (for the moment, other lib suggestions are appreciated) in the CMY colorspace. It's not CMYK:</p> <p>All colors and black should be converted to CMY only so that the black plate is empty when saving my created PDF. I know, black would look some sort of brown, but I have to requirement to not use any black plate for this pdfs.</p> <p>Do you have any suggestions how to do that?</p> <p>Thanks in advance!</p> <p>(PS: this is like <a href="http://stackoverflow.com/questions/532089/need-help-answers-on-pdf-color-seperation">need-help-answers-on-pdf-color-seperation</a>, but instead of converting pdfs, I now ask about creation. But if anyone has an answer to the linked question that would also help!)</p> http://stackoverflow.com/questions/1877837/jquery-change-icon-to-greyscale 0 jQuery: change icon to greyscale Fuxi 2009-12-10T00:07:14Z 2009-12-10T00:21:35Z <p>hi all,</p> <p>i made a button widget in jQuery which displays an icon. now when i set the button do disabled, i'd like to have it greyed-out. is there a jQery function to do this?</p> <p>thx</p> http://stackoverflow.com/questions/671915/actionscript-convert-background-to-transparent 0 Actionscript convert background to Transparent michael 2009-03-23T00:41:01Z 2009-12-10T00:00:01Z <p>The purpose of the function is to covert the background to transparent and then return the bitmapdata, but it seems it do not work. The code is following:</p> <pre><code> private function transparentConverter( source:BitmapData, threshold:Number = 0.1 ):BitmapData { var bitmapData:BitmapData = new BitmapData( source.width, source.height, true, 0x00000000 ); bitmapData.lock(); var color:uint = source.getPixel( 0, 0 ); var x:uint, y:uint; for ( y = 0; y &lt; source.height; y++ ) { for ( x = 0; x &lt; source.width; x++ ) { var c1:uint = source.getPixel( x, y ); var c2:uint = color; var rx:uint = Math.abs((( c1 &amp; 0xff0000 ) &gt;&gt; 16 ) - (( c2 &amp; 0xff0000 ) &gt;&gt; 16 )); var gx:uint = Math.abs((( c1 &amp; 0xff00) &gt;&gt; 8 ) - (( c2 &amp; 0xff00 ) &gt;&gt; 8 )); var bx:uint = Math.abs(( c1 &amp; 0xff ) - ( c2 &amp; 0xff )); var dist:uint = Math.sqrt( rx*rx + gx*gx + bx*bx ); if ( dist &lt;= threshold ) { bitmapData.setPixel32( x, y, 0x00000000 ); }else { bitmapData.setPixel32( x, y, c1 ); } } } bitmapData.unlock(); return bitmapData; } </code></pre> <p>Please advice.</p> http://stackoverflow.com/questions/1844115/jquery-drop-shadow-plugin-custom-color 0 JQuery - drop shadow plugin. Custom color Ockonal 2009-12-04T00:35:07Z 2009-12-09T23:16:17Z <p>Hello, I'm using Jquery plugin DropShadow: <a href="http://code.google.com/p/dropshadow/downloads/list" rel="nofollow">web site</a></p> <p>And I want to set drop shadow color manually. </p> <blockquote> <p>Color is specified in the usual manner, with a color name or hex value. The color parameter does not apply with transparent images.</p> </blockquote> <p>From documentation, so, here is my code:</p> <pre><code>{ ... color: "black", swap: false } </code></pre> <p>It works perfect, with '#000' against 'black' it works too... But if I need shadow color, for example, red '#fff000' plugin doesn't work. I don't see any shadow. Why?</p> http://stackoverflow.com/questions/1877103/how-can-i-get-more-colors-in-emacs-vc-diff 2 How can I get more colors in emacs vc-diff? Serbaut 2009-12-09T21:41:25Z 2009-12-09T22:42:35Z <p>I would like to have vc-diff colorize the output so that added lines are in one color and deleted ones in another. Using Emacs 23.1 and putty/xterm-256color (list-colors-display shows 256 colors and color themes and such works as expected).</p> <p>This is how it looks right now:</p> <p><img src="http://i49.tinypic.com/11vsj9t.gif" alt="alt text"></p> http://stackoverflow.com/questions/1869464/set-the-lsb-of-java-java-awt-color-rgb-components 0 Set the LSB of Java java.awt.Color RGB components Tunji Gbadamosi 2009-12-08T20:02:20Z 2009-12-09T03:15:30Z <p>Is there a method for changing the LSB value of java.awt.Color RGB components?</p> http://stackoverflow.com/questions/1871215/snag-colored-text-command-window-output 0 snag colored text command window output xarzu 2009-12-09T02:11:35Z 2009-12-09T02:11:35Z <p>I sometimes run command line code that produces output in colored letters. I would like to somehow find a way to copy that out put and either port it in RTF format or HTML.</p> <p>I did something simular to this once with a windows app that output text in rtf format. I copied it to a windows write program and safted it as rtf and then use a converter to convert it to HTML.</p> <p>It makes it easier to save the output and look at it later.</p> http://stackoverflow.com/questions/1870968/iphone-mkannotation-pin-color-selected-state-question 0 iPhone MkAnnotation Pin Color "Selected-State" Question Craig 2009-12-09T00:54:29Z 2009-12-09T00:54:29Z <p>Can anyone tell me how to change the "selected state" of a annotation pin color. Meaning if you have a group of 10 pins and they are red and if you select a pin it changes to purple. </p> http://stackoverflow.com/questions/1861527/uitextfield-border-color 0 UITextField border color dasha 2009-12-07T17:30:48Z 2009-12-07T19:52:55Z <p>Hello! Could anybody tell me the truth :) I have really great wish to set my own color to UITextField border. But I could find possibility to change the border line style only. Please, i'll wait any answer</p> http://stackoverflow.com/questions/1853542/how-to-solve-this-layout-dilemma-header-content-and-footer-which-expands-their 0 How to solve this layout dilemma: Header, Content and Footer which expands their background color horizontaly (but at the same time have centered content)? janoChen 2009-12-05T21:30:36Z 2009-12-06T00:44:30Z <p>I created a layout were eveything is centered (with the "margin="0 auto" technique). I also wanted the header and footer to be black and expand to both sides when the browser enlarge to the sides. If I center everything the black background will center too and it wont expand indefinably. The only solution I found was to apply the background style to the header and footer and using a class inside them (.container) to center the content (I think Stack Overflow uses this technique with the footer). It's nice but I would like to know if there's a better way rather than adding additional divs? </p> <p>MY HTML:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt;globo design&lt;/title&gt; &lt;link href="styles/layout.css" rel="stylesheet" type="text/css" /&gt; &lt;link href="styles/slideshow.css" rel="stylesheet" type="text/css" /&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="scripts/slideshow.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body id="home"&gt; &lt;!-- header --&gt; &lt;div id="header"&gt; &lt;div class="container"&gt; &lt;h1&gt;&lt;a href="http://widerdesign.co.nr/"&gt;wider design&lt;/a&gt;&lt;/h1&gt; &lt;!-- navigation --&gt; &lt;ul id="navigation"&gt; &lt;li class="home"&gt;&lt;a href="index.php"&gt;&lt;span&gt;home&lt;/span&gt;&lt;/a&gt;&lt;/li&gt; &lt;li class="portfolio"&gt;&lt;a href="portfolio.php"&gt;&lt;span&gt;portfolio&lt;/span&gt;&lt;/a&gt;&lt;/li&gt; &lt;li class="about"&gt;&lt;a href="about.php"&gt;&lt;span&gt;about&lt;/span&gt;&lt;/a&gt;&lt;/li&gt; &lt;li class="contact"&gt;&lt;a href="contact.php"&gt;&lt;span&gt;contact&lt;/span&gt;&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; &lt;!-- content --&gt; &lt;div id="content"&gt; &lt;div id="top-column"&gt; &lt;p&gt;We &lt;strong&gt;design and develop&lt;/strong&gt; clean and effective webs in the &lt;strong&gt;top 3 languages&lt;/strong&gt; on the Internet. Internet is mean to reach the whole world.You are mean to reach the whole audience:&lt;/p&gt; &lt;/div&gt; &lt;div id="middle-column"&gt; &lt;h2&gt;Our Work&lt;/h2&gt; &lt;!-- slideshow --&gt; &lt;div id="slideshow"&gt; &lt;div id="slidesContainer"&gt; &lt;div class="slide"&gt; Content for slide 1 goes here &lt;/div&gt; &lt;div class="slide"&gt; Content for slide 2 goes here &lt;/div&gt; &lt;div class="slide"&gt; Content for slide 3 goes here &lt;/div&gt; &lt;div class="slide"&gt; Content for slide 4 goes here &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="left-column"&gt; &lt;h2&gt;Web Design&lt;/h2&gt; &lt;p&gt;Create a web site easily with this online HTML generator. Follow the steps below to create web pages then click "view html page" to test it once it's completed. You can copy and paste generated code where you wish within the generated document(s). For example: You created an HTML table with 3 rows and 3 columns. You then added a link, which appears below the HTML table. If you want the link inside the HTML table, just cut and paste it inside the table in place of an "ADD TEXT" statement. Any where text,images,or links need to be, there will be a generated "ADD TEXT" statement in the HTML pages.&lt;/p&gt; &lt;/div&gt; &lt;div id="right-column"&gt; &lt;h2&gt;Web Translation&lt;/h2&gt; &lt;p&gt;Create a web site easily with this online HTML generator. Follow the steps below to create web pages then click "view html page" to test it once it's completed. You can copy and paste generated code where you wish within the generated document(s). For example: You created an HTML table with 3 rows and 3 columns. You then added a link, which appears below the HTML table. If you want the link inside the HTML table, just cut and paste it inside the table in place of an "ADD TEXT" statement. Any where text,images,or links need to be, there will be a generated "ADD TEXT" statement in the HTML pages.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;!-- footer --&gt; &lt;div id="footer"&gt; &lt;div class="container"&gt; &lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); &lt;/script&gt; &lt;script type="text/javascript"&gt; try { var pageTracker = _gat._getTracker("UA-11932489-1"); pageTracker._trackPageview(); } catch(err) {}&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>MY CSS:</p> <pre><code>/* reset */ * { margin: 0; padding: 0; } /* tags */ body { background-color: #FFFFFF; color: #5D5D5D; font-family: Arial, "MS Trebuchet", sans-serif; font-size: 75%; } h1 { background: #2D2D2D url(../images/logo.png) no-repeat scroll 0 0; margin-bottom: 20px; text-indent: -9999px; } h2 { color: #418EE4; font-family: Arial; font-size: 16px; font-weight: normal; margin-bottom: 10px; } a { font-family: Arial, "MS Trebuchet", sans-serif; } /* classes */ .container { margin: 0 auto; width: 960px; } /* header */ #header { background-color: #2D2D2D; padding-top: 10px; } /* navigation */ ul#navigation { height: 20px; list-style: none; margin: 0; padding: 0; } ul#navigation li { float: left; } ul#navigation li a { background: url(../images/tab.png); color: #C0C0C0; display: block; height: 20px; outline: none; padding-left: 10px; text-decoration: none; } ul#navigation li a:hover { color: #418EE4; } #home li.home a, #portfolio li.portfolio a, #about li.about a, #contact li.contact a { background-position: 0 -32px; color: #757575; } ul#navigation span { background: url(../images/tab.png) 100% 0; display: block; line-height: 20px; padding-right: 20px; } #home li.home span, #portfolio li.portfolio span, #about li.about span, #contact li.contact span { background-position: 100% -32px; } /* content */ #content { background-color: #FFFFFF; padding: 20px; overflow: hidden; margin: 0 auto; width: 960px; } #content h2 { border-top: 2px dashed #F0F0F0; border-bottom: 2px dashed #F0F0F0; padding: 5px 0 5px 0; margin: 15px 0 15px 0; } #top-column { color: #818181; font-size: 16px; font-family: Arial, "MS Trebuchet", sans-serif; margin: 10px 0 10px 0; padding: 10px 0 20px 0; } #top-column strong { font-weight: normal; color: #3C3C3C; } #middle-column { float: left; } #right-column { float: left; width: 420px; } #left-column { float: right; width: 500px; } /* footer */ #footer { clear: both; background-color: #2D2D2D; height: 200px; } </code></pre> http://stackoverflow.com/questions/1853207/wpf-can-i-put-a-colour-animation-in-a-style 0 WPF: Can I put a colour animation in a style? Anthony 2009-12-05T19:38:10Z 2009-12-05T23:02:32Z <p>This is a simple WPF window in XAML:</p> <pre><code>&lt;Window x:Class="AnimateTest.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300" x:Name="MainWindow" Style="{StaticResource TestStyle}"&gt; &lt;Grid&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>Note that is has a style. What can we do with the style? This is the <code>App.xaml</code> that gives it a light blue background</p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;Style x:Key="TestStyle"&gt; &lt;Setter Property="Window.Background" Value="AliceBlue" /&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p>To get more complex, this is the background that gives it a blue gradient background:</p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;LinearGradientBrush x:Key="BackgroundBrush" EndPoint="0.6,0.6" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0" /&gt; &lt;GradientStop Color="#FFD0D0F0" Offset="1" /&gt; &lt;/LinearGradientBrush&gt; &lt;Style x:Key="TestStyle"&gt; &lt;Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" /&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p>The last step that I want to do is to animate this colour. I have </p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;LinearGradientBrush x:Key="BackgroundBrush" EndPoint="0.6,0.6" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0" /&gt; &lt;GradientStop Color="#FFD0D0F0" Offset="1" /&gt; &lt;/LinearGradientBrush&gt; &lt;Style x:Key="TestStyle"&gt; &lt;Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" /&gt; &lt;/Style&gt; &lt;Storyboard x:Key="ThemeAnimation"&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetName="(UIElement)" Storyboard.TargetProperty="Background.GradientStops[1].Color" Duration="0:0:10" RepeatBehavior="Forever"&gt; &lt;ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" /&gt; &lt;LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" /&gt; &lt;/ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p>So I can do this in the Window constructor:</p> <pre><code> object themeAnimationObject = this.FindResource("ThemeAnimation"); Storyboard themeAnimation = themeAnimationObject as Storyboard; themeAnimation.Begin(this); </code></pre> <p>But I get an exception:</p> <pre><code>(UIElement)' name cannot be found in the name scope of 'AnimateTest.Window1' </code></pre> <p>I have tried various combinations of values for the animation's <code>Storyboard.TargetName</code> and <code>Storyboard.TargetProperty</code> properties, but they didn't work, I'm just groping in the dark. The best outcome would be able to apply the style, animations and all to any window without any, or with minimal c# code </p> <p>Update: Here's the working App.xaml based on itowlson's answer:</p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;LinearGradientBrush x:Key="BackgroundBrush" EndPoint="0.6,0.6" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0" /&gt; &lt;GradientStop Color="#FFD0D0F0" Offset="1" /&gt; &lt;/LinearGradientBrush&gt; &lt;Style x:Key="TestStyle" TargetType="FrameworkElement"&gt; &lt;Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" /&gt; &lt;Style.Triggers&gt; &lt;EventTrigger RoutedEvent="Loaded"&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetProperty="Background.GradientStops[1].Color" Duration="0:0:10" RepeatBehavior="Forever" AutoReverse="True"&gt; &lt;ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" /&gt; &lt;LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" /&gt; &lt;/ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> http://stackoverflow.com/questions/1323321/all-the-uilabels-in-my-uitableviewcell-sometimes-have-a-black-blackground-color 0 All the UILabels in my UITableViewCell sometimes have a black blackground color Andrew Arrow 2009-08-24T16:15:40Z 2009-12-05T16:00:03Z <p>This happens like once every 100 times I open my app.</p> <p>Normally all the UILabel work fine and have a white background.</p> <p>But every once in a while, the app opens and they all have a black background.</p> <p>Then it's black on black text and you can't read anything.</p> <p>I've tried setting the backgroundColor to white or clearColor.  Doesn't seem to affect this when it happens.  Any ideas?</p> http://stackoverflow.com/questions/1847359/wpf-programatically-assingin-a-color-to-row-in-datagrid 0 WPF: programatically assingin a color to row in DataGrid Abdul Khaliq 2009-12-04T14:41:05Z 2009-12-05T01:14:17Z <p>Hi all,</p> <p>I need to assign a color to the a row that i add at runtime to the DataTable. How can this be done ?</p> <p>Regards Abdul khaliq</p> http://stackoverflow.com/questions/1843821/how-to-turn-an-existing-color-image-into-a-black-white-image 0 how to turn an existing color image into a black-white image ? algro 2009-12-03T23:26:35Z 2009-12-04T17:46:34Z <p>What diffrent approaches exists out there in actionscript 3.0 ? I found this library: <a href="http://code.google.com/p/mojocolors/" rel="nofollow">mojocolors</a> But this is more for graphics-color I guess…</p> <p>Thx</p> http://stackoverflow.com/questions/1738317/how-to-change-out-of-focus-text-selection-color-in-xcode 1 How to change out-of-focus text selection color in Xcode? Jackson 2009-11-15T18:14:44Z 2009-12-04T04:27:53Z <p>Okay, I'll bite.</p> <p>I've got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible.</p> <p>When I am doing a project search and iterating through the results, however, the results list stays in focus and the found text remains out of focus, using a different background color. This color is extremely hard to detect, especially when the text is embedded in a larger code block and the view is shifting around as it scrolls to the results.</p> <p>Here's an example:</p> <p><a href="http://img163.imageshack.us/img163/9780/infocusoutoffocus.jpg" rel="nofollow">Left side is in focus (just normal selection), right side is out of focus (during project find)</a></p> <p>Often it takes a few seconds to find where the heck the selected text is.</p> <p>Unless I'm just missing it, Xcode seems to offer no way to change this particular selection color. Interestingly, it also doesn't seem to follow the selection color from the Appearance panel. </p> <p>Does anyone know a way to change this color or force it to be more visible, short of changing my entire color scheme around?</p> http://stackoverflow.com/questions/1821568/how-to-specify-override-jquery-icon-color 0 How To Specify (Override) JQuery Icon Color Mega Matt 2009-11-30T18:35:12Z 2009-12-03T21:29:56Z <p>Hello,</p> <p>I've been making good use of the jQuery icons in my web app, but have come to a point where I would like to use a color that I'm not able to achieve by default. I'm currently using the "State Street" theme, which primarily uses green. But I have a red box with white text, and would like to use an icon that is white as well. There are white icons that are supplied with the theme, but they only get applied when the icons are inside a div (or some other container) that has a class of "ui-state-focus". This will make the icon white, but will change the background color to green, which I want to leave as red.</p> <p>Is there any way (most likely via CSS) to override what background image jQuery uses for the icons, so that I can use a different color?</p> <p>Thanks.</p> <p><strong>CLARIFICATION:</strong> I guess it would help for me to post the html I'm currently working with:</p> <pre><code>&lt;!-- currently produces a default 'grey' icon color --&gt; &lt;!-- this b/c no jquery ui class (like ui-state-focus) given for errorMessage div --&gt; &lt;div id="errorMessage"&gt; &lt;span class="ui-icon ui-icon-alert" style="float: left"&gt;&lt;/span&gt; Only 1 Activity can be added at a time &lt;/div&gt; </code></pre> <p>I also have CSS:</p> <pre><code>.dialog #errorMessage { /*display: none;*/ background-color: #CC3300; color: #FFFFFF; font-weight: bold; padding-top: 3px; padding-bottom: 3px; vertical-align: bottom; bottom: auto; font-size: .80em; width: 100% } </code></pre> <p>"display: none" is currently commented out so I can see it. I do have it set up to fadeIn on error catch. Thanks again for the help.</p> http://stackoverflow.com/questions/1831527/simple-way-to-colour-alternate-output-lines-in-bash 2 Simple way to colour alternate output lines in bash naught101 2009-12-02T08:46:09Z 2009-12-03T08:14:15Z <p>I have need to grep an entire directory for a string, and I get about 50 results. I would like to colour each second line, either text colour or background colour. Best would be a script that I can pipe the output of any command to, and so that it spits out the same (albeit coloured) output.</p> http://stackoverflow.com/questions/1834973/making-new-colors-in-jexcelapi 0 Making new colors in JExcelApi Ken 2009-12-02T18:45:37Z 2009-12-02T18:45:37Z <p>I'm using JExcelApi for generating XLS files. From <a href="http://jexcelapi.sourceforge.net/resources/javadocs/2%5F6%5F10/docs/jxl/format/Colour.html" rel="nofollow">jxl.format.Colour</a>, I see how to get any of the colors in the "standard Excel colour palette", but not how to create a new color (say, given its RGB).</p> <p>But in Excel itself, I can pick any color at all.</p> <p>Am I just missing it? Is there a way in JExcelApi to select an arbitrary color? I'm using a simple find-the-closest-standard-color method right now, which is OK but not great.</p>