transparent

Transparent Background

How can i make the background 50% transparent? Let's say the background of an AbsoluteLayout so it's dark but you can still see through it? ...

OpenGL translucent texture over other texture

I got a 2 png images, being used as textures in a Qt/C++ 2D OpenGL application. The first is used as some kind of "middle" ground and the second is used as an "object" being rendered "ontop" (Note: they all have the same z-value atm, I get the desired behaviour be rendering it in a defined order). The "object"-texture is partly transluce...

Transparent Images

Does anyone know if IE now supports transparent png's etc...? Does chrome as well? ...

How to make a transparent background without background image ?

I would like a div to have a transparent background. I tried to do this using background-color and opacity, but the problem is that the border and the text inside become also transparent. Example here. Is this possible to achieve this without using transparent PNG background image ? ...

Problem in creating thumbnail of png image !!

Hi, I have used the following php function to create thumbnail image. function createThumbs( $pathToImages, $pathToThumbs, $thumbWidth ) { $dir = opendir( $pathToImages ); while (false !== ($fname = readdir( $dir ))) { $info = pathinfo($pathToImages . $fname); if ( strtolower($info['extension']) == 'jpg' || strtolowe...

[qt] transparent window stays on top

Hello. I'm trying to make a transparent window stays on top (z-order). I want to implement something like layer that indicates some parameters on the other program. So what I need is to make background transparent, not whole widget with QWidget::setWindowOpacity function. I found some documents about it http://doc.trolltech.com/qq/...

Andrioid Button set Background to Transparent Color

How can I set the Background for a button to a transparent Color, like transparent Blue for eg, instead of a solid blue? When I use button.setBackgroundColor(Color.BLUE) it sets it to a solid blue. Thanks Chris ...

Transparent iframe in IE7

Everything was normal until I tested the page on IE7. I'm using greybox (but that is not important) and the pop-up page is with semi-transparent PNG background and looks ok... except on IE7 where the page gets background somehow. I try to set body { background-color: transparent } and #id_frame { background-color: transparen } ...

How is this 3D rendering on the desktop done

I read a topic on OpenGL.org where a guy made this: http://coreytabaka.com/programming/cube-demo/ He said to release the source code but he never did, does anyone how I could get the same idea? Has to do with clearing the window with alpha but drawing on it as well.. just don't get how to get OpenGL setup like that. From there I can do...

transparent parts of sprite responding to mouse events

I'm making a puzzle game in Flash cs5/as3 which can have custom puzzle shapes. Basically, the user can draw basic protrusions of a puzzle. Then I create a black and white puzzle piece with a custom function like this var piece:PuzzlePiece= new PuzzlePiece(true,true,false,false); PuzzlePiece is a class that extends Sprite. The four arg...

Get away with built-in draging html elements.

I have a problem with html-objects that moving when I´m dragging them, you know the transparent "ghost" -copy of the element that appears when you holding down the mouse and drag it. My problem is that it interrupt my mouse event. I have a image that should be able to move inside a div when you draging it with the mouse. I have to events...

c# FlowLayoutPanel scroll, background distorts + flickers

I have a windows form application that has a background. Within it, I have a flowlayoutpanel with a transparent background. When I scroll, the following happens: http://imgur.com/5fmTh.png I also see some flickering. I've tried all the doublebuffered business, and it doesn't work. Any suggestions? ...

Change input background to transparent in Safari.

Is it possible to eliminate the white background (via CSS) in the input and textareas when you click in the field using Safari or any other browser? Here is my link: link text Cheers. Erik ...

Transparent pictureboxes flickers when moved with mouse

I have made a card game built of pictureboxes. The empty places a card can be put in is an empty picture box with a transparent background and a 3d border. And then I have a current card which is also a picturebox which is moved by a MouseMove event. As soon as I drag a card over the transparent PictureBoxes there is a card left all ov...

How to have a transparent ImageButton: Android

<ImageButton android:id="@+id/previous" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/media_skip_backward" android:background="@drawable/transparent"></ImageButton> This is what I tried to get a transparent ImageButton so as to place those buttons on a SurfaceView. But Eclipse, gives me...

FlashBuilder 4/Flex, set transparent background for web app?

I'm embeding a flex application into a web page using the most recent version of swfobject.js. I've set wmode to transparent and all that but whatever I've enterd for the embeded objects default size, is then a white background within my application. I've set the application's backgroundAlpha to 0 and I know that part works because my ap...

Transparent toast frame

How to set transparent toast frame in android ? I want to it more transparent. ...

Avoiding making a UIButton transparent/see-through when disabling it

I want to disable my UIButton, so I call: button.enabled = FALSE; However this makes the button see-through and I can see the elements underneath it. I don't mind that it changes colour, I just don't want it to be see-through. I've tried ticking the boxes for 'opaque' and 'clip subviews' in IB, but no joy. Is there an easy way to ...

50% Transparent background of Navigation Buttons, Segment buttons in iPad and iPhone

Is there a way to customize navigation button, segment button background like iBooks? Check out iBooks shelf top left corner. the button background is about 50% transparent. What a pretty! Any one konw how to emplement it? All Regards ...

iphone how to I make a uitableviewcellaccessorydisclosureindicator background transparent?

Can someone please explain to me how I can make a uitableviewcellaccessorydisclosureindicator's background in a UITableViewCell transparent? Right now I'm facing this problem: ...