Results 1 to 7 of 7
- 03-07-2010, 06:09 AM #1
Member
- Join Date
- Mar 2010
- Posts
- 10
- Rep Power
- 0
How do i fix this Java applet ??????
In the Java applet below, i'm trying to make the text box change color when the slider is moved to the left and right. Right now when I move the JSlider left or right the text in the text box changes color. How do I get the text box the change color ??????
import java.awt.Dimension;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;
import javax.swing.JApplet;
import javax.swing.JTextField;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JSlider;
import javax.swing.SwingUtilities;
import java.util.Random;
import java.awt.Color;
public class Main extends javax.swing.JApplet {
private JTextField aTextField;
private JSlider aSlider;
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
JFrame frame = new JFrame();
Main inst = new Main();
frame.getContentPane().add(inst);
frame.pack();
frame.setVisible(true);
}
});
}
public Main() {
super();
initGUI();
}
private void initGUI() {
try {
setSize(new Dimension(200, 200));
getContentPane().setLayout(null);
{
aTextField = new JTextField();
aTextField.setBackground(Color.white);
getContentPane().add(aTextField);
aTextField.setText("How do I make the whole text box change color ?");
aTextField.setBounds(65, 80, 300, 80);
}
{
aSlider = new JSlider();
aSlider.setBackground(Color.yellow);
getContentPane().add(aSlider);
aSlider.setBounds(65, 200, 300, 80);
aSlider.addMouseMotionListener(new MouseMotionAdapter() {
public void mouseDragged(MouseEvent evt) {
aSliderMouseDragged(evt);
}
});
}
} catch (Exception e) {
e.printStackTrace();
}
}
private void aSliderMouseDragged(MouseEvent evt) {
Random r = new Random();
int red = Math.abs(r.nextInt())%200;
int green = Math.abs(r.nextInt())%100;
int blue = Math.abs(r.nextInt())%100;
aTextField.setForeground(new Color(red, green, blue));
}
}
- 03-07-2010, 10:46 AM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,405
- Blog Entries
- 7
- Rep Power
- 17
- 03-07-2010, 01:05 PM #3
Triple posted
Help with this Java applet !!!!!
How do i fix this Java applet ??????
How do i fix this Java applet ??????
The OP's next topic is also triple posted.
In JCreator, i want to create a basic JSlider w/ a text box. Where do i start ?
How do you make a basic Java JSlider with a text box ???
How do you make a basic Java JSlider with a text box ???
db
- 03-07-2010, 01:14 PM #4
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,405
- Blog Entries
- 7
- Rep Power
- 17
Darn, it's like graffiti isn't it?
kind regards,
Jos
- 03-07-2010, 07:46 PM #5
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,546
- Rep Power
- 11
Then there's bytes.com...
- 03-07-2010, 08:41 PM #6
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,405
- Blog Entries
- 7
- Rep Power
- 17
- 03-08-2010, 05:52 AM #7
Similar Threads
-
Help with this Java applet !!!!!
By danielmessick in forum Java AppletsReplies: 2Last Post: 03-07-2010, 12:58 PM -
What're the differences between JSP, Java Script, and Java Applet?
By meili100 in forum New To JavaReplies: 3Last Post: 07-23-2008, 08:07 AM -
Java Applet Help
By Nuluvius in forum New To JavaReplies: 0Last Post: 03-01-2008, 03:04 PM -
New to JAVA Applet
By kazitula in forum Java AppletsReplies: 2Last Post: 10-31-2007, 08:11 PM -
Java 3d in applet
By carl in forum Java AppletsReplies: 1Last Post: 08-06-2007, 05:55 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks