The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
44 views

Any way to disable the default click animation of a JButton?

So i have a few JButtons on top of a background image and they are set to be transparent so the background can be seen. When i click the button however, a greyish square appears where the button is ...
1
vote
2answers
80 views

Java / Swing -> Creating a notification JFrame, and the error “The frame is displayable”

Ok, I am not that versed in Java / Swing, and I am running into a problem. My application is throwing this error: "Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: The ...
-4
votes
0answers
46 views

Java translucent windows like windows 7 [closed]

I am trying to find how to create translucent frosted like effect in a JFrame. (Like the onw in the windows 7 theme, not aero). I searched for it, but I was not able to find it or even the right ...
4
votes
3answers
372 views

Can't transparent and undecorated JFrame in JDK7 when enabling nimbus

Look at this picture : here is the code that transparent's the frame: GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice gd = ...
0
votes
1answer
85 views

Is it posible to place the tabs within JTabbedPane(JPanel)?

Like this! And the setOpaque(false); in JTabbedPane didn't work. Would someone help me please? part of my code: for (int x=1; x<6; x++){ newsPanel[x]=new JPanel(); ...
0
votes
1answer
76 views

transparent JFrame BACKGROUND but visible contents

Im trying to make a desktop widget using java, basically what it is, a clock that looks like the Sense Clock Widget from HTC android phones. everything is set, clock works and i have a background and ...
2
votes
2answers
243 views

Using translucent png's as textures and fading them OpenGL ES 2.0

I have some .png files that I'm using as textures for my 2d game quad sprites. Some of these already have partially transparent pixels in them and I need to be able to display them correctly and fade ...
0
votes
1answer
83 views

Transparant JFrame in java swing

I need to create a transparant jframe in java swing which will have an opacity of 0.05f. I tried the code below but it doesn't work. I work in windows. What do I need to do to make it work? ...
1
vote
1answer
75 views

Rendering translucent objects in a complex scene

so I am stuck with the following problems about scenegraphs and translucent objects... My problem is that I want to render multiple translucent objects in one scene. I know that I have to render the ...
-1
votes
2answers
191 views

make half jframe transparent using java

I am creating a JFrame Form using netbeans .Is it possible to make transparent half portion of the Jframe and the remaining half portion as the same . If i use opacity property it applies on the full ...
0
votes
0answers
47 views

Transparent Landscape Activity on top of portrait activity

I searched a lot for this specific situation but couldn't find any answer. My application have a normal portrait activity with a button on bottom. Clicking on button results in launching an activity ...
2
votes
0answers
144 views

Java Window Translucency Animation Flicker on Linux

I'm trying to do animation in Java with a translucent JFrame. I have modified the demo code from the Oracle Java Tutorials here. Specifically the GradientTranslucentWindowDemo. The following code ...
1
vote
1answer
100 views

Java Window Translucency on Linux

Using Java 7 window translucency on Windows XP SP3, Vista, 7, 8 and Mac OS X Mountain Lion works great. However, on Linux I cannot get it to work properly. Using the tutorial found here, ...
1
vote
0answers
97 views

Achieving translucency of 3D object in Metro Application

I am working on a 3D project for Windows Store (Metro Application) and using Visual Studio 2012 Express for Windows 8 and Blender for creating 3D objects. I am importing an fbx mesh file of a 3D ...
0
votes
0answers
28 views

Making transparent frame but image inside the label in the frame is not included [duplicate]

I already make my frame transparent and make my frame undecorated. I have an image inside the frame but when I use com.sun.awt.AWTUtilities.setWindowOpacity(this, 0.0f) the frame becomes transparent ...
5
votes
1answer
324 views

How to make a transparant Jframe in Java but keep everything else the same?

I want to make the Jframe transparent, but the image on top of it to be non-transparent. This is what I have now: Does anyone know a way to make only the JFrame transparant? Here's my code: ...
0
votes
0answers
162 views

On android ,How to implements translucent materials by GLSL?

As 3d software (3dmax, maya) handles the translucent materials such as jade, wax Mostly through coloring shader (material ball).in opengl es 2.0,If I want to achieve the same effect of the ...
1
vote
1answer
153 views

Opacity/Translucency of a JButton?

I have simple GUI code as follows, in which I want to make the JButton one translucent, so that the image behind the JButton is visible! package dealORnodeal; import java.awt.BorderLayout; import ...
0
votes
1answer
527 views

UITableView section header creeps under navigation bar

Due to navigation bar style being translucent, I get my first section header (section # 0) hidden under my navigation bar. I know this has been asked before, and a workaround to it is to do: ...
2
votes
1answer
140 views

Make a JPanel transparent to see behind the frame?

I know how to do a shaped or a translucent JFrame, but I would like to have a rectangular zone in my frame which would be translucent so the user can see what is behind. I don't know how to do that ...
3
votes
2answers
84 views

Need help in understanding the swing code

I have developed a swing application with an oval and a button whose output is shown below and the code follows :- Code:- import java.awt.AlphaComposite; import java.awt.Color; import ...
5
votes
2answers
178 views

Translucent icons in ActionBar when disabled: only on my phone?

I'm using ActionBarSherlock on my app and when I disable some MenuItem in the ActionBar the icon turns translucent on my phone (HTC One X running stock Android 4.0.4) but I haven't seen this behavior ...
1
vote
1answer
122 views

JDialogs with translucency disappear when the main window is minimized

There appears to be a bug with the window translucency functionality in Java 7 (I believe the problem existed in Java 6 as well). If I open a translucent window and then minimize its parent window, ...
0
votes
1answer
111 views

Getting unexpected output from the swing program

In the following code why i'm getting an invisible window?What does setUndecorated() do and where it is used for. import java.awt.Color; import java.awt.Dimension; import java.awt.Toolkit; import ...
1
vote
2answers
81 views

Unable to understand the code properly

In the following code, i cannot understand setBackground() methods sets the background for which layer. Secondly, when i include this line why there becomes a hole in the window, means when i click in ...
4
votes
3answers
538 views

Swing: hovering mouse over radio button label on translucent JPanel

In my problem I have an opaque JPanel and another JPanel that is translucent(semi-transparent) which sits on the first JPanel. When I have added radio buttons onto the top JPanel. The problem is every ...
1
vote
2answers
290 views

AWTUtilities not found

I am working on a small java application and I'd like to use transparent windows. However when I use AWTUtilities.<any method> I get this - 'AWTUtilities cannot be resolved'. I've looked for ...
0
votes
0answers
205 views

Changing opacity/transparancy/background color on tab-icons on Android 4.0 Action Bar

I'm having quite some trouble actually defining the colors on my android action bar. I've been trying to get the images, which are white png icons from the android library to actually show up as white ...
2
votes
1answer
72 views

Java - make one specific colour transparant

Is it possible to make one specific color transparant in a JFrame? I know that it is possible in VB.NET, but I would like to know it whether or not it is possible in Java! For example: My JFrame has ...
1
vote
2answers
106 views

how to make JLable visible and Translucent (almost invisible) on mouse hovering

I made a Wrappable JLabel which shows text message within the label with multiple lines. The label and text (i.e. foreground and background) are visible all time. Now I want to change the JLabel such ...
2
votes
1answer
858 views

Background opacity and blur over another image

I am working on one thing and instead of using big images I would preffer to use normal background-color, with some opacity and blur on it... Here is example: ...
3
votes
1answer
452 views

Translucent JPopupMenu inside a Translucent Window - alternative?

I'm not sure if this is possible, but is there a way to safely allow popups to be translucent even when the parent container is also translucent? If not, what would be wise alternative to use or ...
14
votes
2answers
664 views

Translucent JFrame border JDK 7

I was asking question about Translucent JFrame border (see here) and I got very good answers, but unfortunatelly, given answers work perfectly only on JDK 6, but not 7. Any ideas how to make it work ...
2
votes
2answers
1k views

Translucent JFrame border

I want make JFrame border transparent, so I am trying to do so using my own Border class... private class ShadowBorder extends AbstractBorder { private static final int RADIUS = 30; ...
1
vote
1answer
146 views

JDK7 translucency + jframe + jcombobox

there seems to be a problem when I have a jComboBox in a jFrame that is using translucency. When I click on the dropdown, a white background appears to cover other components but the items in the ...
1
vote
3answers
550 views

Save website sourecode to file via php

Hi I wan to save the sourecode of http://stats.pingdom.com/w984f0uw0rey to some directory in my website <?php if(!copy("http://stats.pingdom.com/w984f0uw0rey", "stats.html")) { echo("failed to ...
0
votes
2answers
195 views

OpenGL (ES) Model Within Translucent Model

I want "Face In a Crystal Ball" effect where I have a model (the face) doing things inside of a translucent model (the crystal ball). I feel like I'm taking crazy pills because I just can't get this ...
1
vote
2answers
299 views

Transparent AWT component, possible?

I'm in the need of a translucent AWT component/container to be placed on top of other components to receive the mouse events. The problem here is to create a translucent component. My investigation ...
0
votes
1answer
247 views

Translucent png become black opaque or even brown opaque in app? [closed]

Here, I have a png for customing the appearance of my table or something, of course in the IOS. and after our designer, who draws these pictures, completed a png, and part of it is translucent which ...
3
votes
2answers
968 views

How to make a rectangle in Graphics in a transparent colour?

I'm trying to paint a rectangle on my application in a red shade but I need to make it sort of transparent so that the component under it will still show. However I still want that some colour will ...
0
votes
1answer
315 views

Transparent JPanels

I'm writing a GUI that lets the user draw a graph, where each node is represented by an extended jlabel, and each arrow should be represented by an extended Jpanel with transparent background ...
3
votes
1answer
296 views

Android - How to improve ListView performance when setting Theme.Translucent.NoTitleBar in Activity?

I have an activity with Theme.Translucent.NoTitleBar set as the activity's style attribute in the manifest.xml. <activity android:theme="@android:style/Theme.Translucent.NoTitleBar"/> I need ...
-3
votes
1answer
398 views

Transparent Layers in one JFrame [closed]

I need to put three images one over the other, but i need to see through each one, as if they were transparent. It's not working . (i'm using , netbeans)
5
votes
2answers
2k views

Is it possible to have a translucent windows in java 7 including a title bar?

Related to this question: Is The Java Tutorials Translucent Window example giving trouble to those playing with jdk7? with jdk1.6.0_26 I seem to be able to apply translucency to a JFrame, but not so ...
3
votes
1answer
514 views

Translucent components inside JPanel

I have class MyPanel that extends from JPanel. MyPanel class has JLabel component which holds an icon. My question is how can i paint/render this JLabel component to get translucent effect (see ...
5
votes
1answer
1k views

How to add Window's Aero effects to a JPanel?

I'm trying to have Aero Glass look in my JPanel. Is it possible do such a thing? How to add Aero effect to JFrame - like this picture?
1
vote
1answer
285 views

Translucent QWidget should be clickable cross-os

I'm trying to accomplish the following with a Qt (C++) app, cross OS. Upon running the program a new window pops up, a fullscreen QWidget. Now I want this to be see-through/transparent, so the user ...
0
votes
1answer
605 views

How to create an transparent gif/png image with translucent color patch?

I want to create gif/png image file using java programatically. This gif/png image should be transparent and a certain patch of color of specified rectangular size and at specified location should be ...
1
vote
2answers
471 views

Can't make the Window of my Activity translucent

I'm trying to make my Activity translucent, i.e. see-through, but it's not working. It's always opaque. That's my code so far: public class SvetlinTranslucentActivity extends Activity { /** ...
22
votes
3answers
10k views

Change color of translucent black UINavigationBar

I stumbled upon this many times, never found a solution. A UINavigationController's navigationBar can be set to black translucent like: ...

1 2