background

iPhone Fixed-Position UITableView Background

I'm building an iPhone app without the use of Interface Builder. I have set the background of a grouped UITableView in the following manor: self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"groupedBackground.png"]]; I'm trying to fix this background image so that it doesn't scroll with the table cells. Do...

How do I fade background images using jQuery?

I want to have the background image change form one to another and fade in the process. Consider this for a mouseover/mouseout situation. How do I fade background images using jQuery? Is there a jQuery plugin that I need? ...

Webkit button: color overflows round corners

I'm trying to make a rounded button using -webkit-border-radius This gives me this button (in Safari): You can see that the color overflows in the rounding. I tried changing border size and radius, and it doesn't help. Is this a rendering bug with Safari or something? ...

change desktop background

how can i change desktop background with python i want to do it in both windows and linux thanks ...

Image isn't reflecting its properties

http://grab.by/1rI8 I wrote some jQuery script so that the background image will always scale and will never show a blank spot. function runIt() { currentHeight = $("#bg").height() //useless for you currentWidth = $("#bg").width() //useless for you ccurrentHeight = $("#cover").height() //useless for you ccurrentWidth = $("#cover")....

jquery .find and .replace div background

Lets say I have two divs How do I use .find to get div1's background image, than apply that background image to div2, and replace ".jpg" with "_highlighted.jpg" ? var div2bg = $('.div1').find('div').attr('background-image'??)//how to assigned the background image as a variable? $('.div2').css("background-image", "url(" + div2bg + ")")...

Transperent png and swfobject in IE

Hello! I have a page with a transparent png that (background-repeat: repeat). The background works fine on all other pages. On this particular page is a flash music player. I believe the is causing the background to look weird in IE8. Is the player causing this? What can I do? URL to page: http://kingromeo.com/wordpress/media/ ...

Paint background of JPanel

Hi everyone, How can I tell the paint method to draw background on JPanel only and not on the entire JFrame. My JFrame size is bigger than the JPanel. When I try to paint a grid background for the JPanel, the grid seems to be painted all over the JFrame instead of just the JPanel. Here parts of the code: public class Drawing extends ...

BackgroundColor of UITableViewCellStyleSubtitle labels ??!?

I am trying to create a table with an image as a background. To achieve this, I started out with the background: self.view.backgroundColor = [UIColor groupTableViewBackgroundColor]; This resulted in a background image which appears in tablecells as well. That is not something I want, so I tried to set the cell's backgroundColor: cell...

programmatically change the background color in eclipse

Hi everyone, I have a question related to eclipse plugin development. Is there any means by which I can programmatically change the background color in eclipse. I am able to change the text foreground color by calling setTextColor(color, offset, length, controlRedraw) in ITextViewer but I don't find any function by which I can c...

Android wallpaper/background dimensions

Which are the default dimension of the Home wallpaper/background for the various Android screen configurations (small, normal and large screens with low, medium and high density)? Are 9-patch PNG files supported for the wallpaper? Should I be using these instead? I found a method in API level 5 that gives you the minimum size of the wa...

to create barchart using jfreechart such that use different background color for a special bar

I want to create barchart using jfreechart such that an special bar's background color can set be set different from the background color of the plot. Is it possible using jfreechart or any other way? Thanks in advance, Abhinav ...

Efficient Background subtraction with Opencv

Hi, I want to do background subtraction in a video file using Opencv method. Right now i'm able to do background subtraction, but the problem is that i couldn't get the output in color mode. All the output after subtracting the background is coming in grayscale color mode :(. I want to get the color information to the foreground which i...

how to apply background iframe to an image?

Hi, I am using wordpress blog on my site: http://sunite.co.uk I want to rotate background image on the current theme:Techified The background image i want to rotate using openx is: http://sunite.co.uk/images/background.html The code on the stylesheet.css for this is: /************************************CONTENTAREA*********************...

jQuery crossfade with background images

Hey, I have a jquery crossfade working but the only problem is it fades between two physical images that it places and I need it to fade between background images instead. If there is already a good script that does this that'd be great or maybe what I have can be easily altered. Here is the plugin code: /* * Copyright 2007-2009...

How do I make the background image scroll in an overflow: auto box?

I want the background to scroll with overflow: auto. Is this possible with pure CSS? ...

Is there a background-width property in CSS?

I have a vertical menu using lists (li) and I've got it changing background color on hover. #limenu:hover {background-color:#000} However, I don't want the background to fill 100% width. Is there a way of setting the background width or creating a padding on both sides? ...

is it even possible to expand a (horizontal) list's background with ajax?

I've got a list with list-style-none which needs to be able to add new items to itself via Ajax and have the background expand appropriately when it does. Adding via Ajax is easy, but every solution I try for the background fails me. I don't know if it's even possible; is it? I'm using a grid like this one: http://jqueryui.com/demos/sor...

PHP on a windows machine; Start process in background then Kill process

I'm looking for the best, or any way really to start a process from php in the background so I can kill it later in the script. Right now, I'm using: shell_exec($Command); The problem with this is it waits for the program to close. I want something that will have the same effect as nohup when I execute the shell command. This will allo...

delphi TRichEdit Set background color excluding spaces

Hi! I found this code over the net. This puts background color to the selected texts on Trichedit: uses RichEdit; procedure RE_SetSelBgColor(RichEdit: TRichEdit; AColor: TColor); var Format: CHARFORMAT2; begin FillChar(Format, SizeOf(Format), 0); with Format do begin cbSize := SizeOf(Format); dwMask := CFM_BACKCOLOR; ...