Tagged Questions
-6
votes
0answers
58 views
This Java application not working. what are the changes I need to do correct this application [closed]
This Java application I created using swing components in java .its not actively working what are the changes I need to do correct this application ,
need to know what are the mistakes this code .need ...
-3
votes
2answers
42 views
Setting configuration while maintaining JPanel type [closed]
I try to run the following source but get
Type mismatch: cannot convert from CustomJPan to JPanel
errors. Can someone please help? Please excuse the source, I did it off the top of my head.
...
-1
votes
1answer
112 views
Applet won't run inside JPanel
I am trying to run a Runnable class in a JPanel in a JFrame. The program compiles, but it doesnt work as intended. There should be a cube rotating on the screen, with some menus on top. What am I ...
0
votes
2answers
329 views
How to create internal frames (child frames) in an applet
I am trying to create a child frame to exist inside my applet and it should be bound to a JPanel. I found this and that on the internet but nothing that worked. I think something went wrong during ...
0
votes
1answer
134 views
jPanel visible on mouse location
I have an applet in which I desire to show a jPanel on mouseover. That part is covered.
What I really wish is that the jPanel appears on the current mouse location.
How can I achieve this?
I'm using ...
-1
votes
2answers
458 views
How do I change this Java Applet to use JPanel?
How to change it to JPanel, this code is in Java Applet how do I change it?
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
import java.util.Random;
import ...
1
vote
1answer
212 views
Move application to other frame and then back to previous
I'm writing java applet.
I want to to open a new Frame with content actually stored in my Applet. I'm opening new Frame through the Button:
openInNew.addActionListener(new ...
1
vote
1answer
732 views
Repaint JPanel doesn't work in JApplet
I have the the main JPanel (in JApplet ) which containts the child JPanel and the button. I want to click the button make the child JPanel removed and another child JPanel added to the main JPanel, ...
0
votes
1answer
79 views
Adding an unknown number of JComponents to a JPanel
Good day,
I am building an Applet (JApplet to be exact) and I sub divided that into two panels. The top panel is called DisplayPanel which is a custom class that extends JPanel. The bottom panel is ...
1
vote
1answer
144 views
Issue with JPanel as scrollable
I am developing a java JApplet to display few 10s of check boxes in scrollable pane. I included these check boxes in JPanel and added this panel on JScrollPane which is added in current ContentPane of ...
0
votes
2answers
588 views
Jpanel on top of an applet
So what i'm trying to is adding a semi transparent jpanel on top of an applet, so i can paint graphics on top of it, but when i do the jpanel displays the panel under the applet.
Here's some code:
...
-2
votes
1answer
129 views
Browser doesn't show full JApplet
This what shows up in Eclipse when testing:
And this is what show up in Firefox/Chrome browser, when I launch it as applet:
HTML code:
<APPLET code='GUI.MainMenu.class' archive = ...
1
vote
0answers
201 views
ActionListener's, Buttons and JPanels
I have 5 classes that extend JPanel with at least one JButton on them for "navigation". All five of these classes will eventually become an interactive Applet (I know applets are archaic but I am ...
1
vote
1answer
320 views
trouble executing actionlistener in swing applet embedded in html
Following is the applet code below:
import javax.swing.*;
import java.awt.*;
import java.applet.Applet;
import java.awt.Graphics;
import java.awt.Image;
import ...
0
votes
1answer
2k views
Java Swing refresh JPanel
I have a Applet class (extends JApplet). Inside the class I am instantiating a JPanel and initializing a JButton whit setEnabled(true). After the user clicks this button in the Panel and does some ...
1
vote
1answer
900 views
Java JApplet Graphics Double Buffering
I'm writing a pretty simple game in Java, and I'm running into the issue of very serious flickering when I play the game as an applet in a browser. That is, all of my sprites, which are being painted ...
0
votes
1answer
918 views
Java Applet Panel Refresh
I have a Java Applet that loads a record of a board game from a URL and displays the configuration using a series of panels laid out in a grid and nested in a JPanel. This is a small component of an ...
3
votes
2answers
711 views
Java applet game does not work on Macs, even though it does work on PCs
I made a game that is based in a jpanel. When I add the jpanel to a jframe, it works fine on both pc's and macs.
here is the class where I add the jpanel to the jframe:
import ...
2
votes
1answer
1k views
focus for java applets
I made a java game that is all based on JPanel. When I add it to a JFrame it works perfectly, and when I add it to a JApplet and test it with the built in applet tester of eclipse it works perfectly. ...
1
vote
2answers
1k views
Applet panels, one fixed size, and dynamic JTextField
I need an applet which contains one panel. The panel needs to be 550x400 pixels, the JTextField needs to be under the panel dynamic size. I want it to be like this:
[topPanel]
[textPanel]
However I ...
2
votes
3answers
2k views
JApplet/JPanel not receiving KeyListener events!
I cannot get my JPanel within my JApplet to receive keyboard events. I CANNOT FATHOM why!
Note that...
Clicking the panel (with mouse) before typing makes no difference. This is by far the most ...
2
votes
1answer
661 views
Multiple java Applets handling
I'm creating a simple java game Applet that has multiple Panels, The main game Panel has 4 JButtons that lead to the rest of the Panels when they are clicked.
when the program runs, the four Panels ...