My JSlider value controls my timer.
speedSlider = new JSlider(); speedSlider.setMinimum(200); speedSlider.setMaximum(1000); speedSlider.addChangeListener(this); speedSlider.setValue(1000);
2/28/2006 4:44:41 PM
just change the way you give the numbers to the user. Let it go from 2-10. Then use that number to divide 2000. so that at the left side the slow, and the high is the fast.
2/28/2006 4:50:49 PM