JSlider is a Java Swing component that lets the user graphically select a value by sliding a knob within a bounded interval.
-1
votes
1answer
24 views
Positioning a Slider in a JPanel using Java
Ok, like with everything I find it easier to learn when jumping into the deep end (Java, PHP, Air Traffic Controlling) I just try not to kill anybody in the process; however, I cannot find any ...
0
votes
0answers
31 views
Oval Slider Tutorial not the same as mine
I followed a tutorial from YouTube and I have exactly the same code as him however my Oval aka the circle does not refresh and also the background of my window is not orange.
Could it be a plug-in ...
0
votes
1answer
29 views
Set JSlider's spacing to multiples of ten
I want a JSlider which has five different value's: 1000 (thousand), 10000 (ten thousand), 100000 (a hundred thousand), 1000000 (one million) and 10000000 (ten million). As you can see, every value is ...
0
votes
2answers
37 views
How to add resizing slider to rectangle shape in java?
Here is my rectangle shape code:
if(rect){
gphcs.setColor(Color.BLUE);
if(orangeshp)
gphcs.setColor(Color.ORANGE);
if(greenshp)
gphcs.setColor(Color.GREEN);
...
1
vote
3answers
47 views
How to update a JSlider's maximum value without dispatching a change event
I have wee bit of code that updates a JSlider; and at another point in time, the JSlider's maximum value needs to updated. The problem is when I call setMaximum() on the slider, it also dispatches a ...
0
votes
0answers
21 views
How to resolve conflicting function names with third party plugin
The specific situation i'm looking at is including jslider in my application. I believe the problem i'm encountering is that my current framework (jQuery mobile) has a function with exactly the same ...
0
votes
0answers
36 views
Easy Java Simulations Slider View On Release issue
I wrote a function to get a random number between two values as so:
public int getRandomNumber(int lowest, int highest){
int num = highest - lowest;
Random rand = new Random();
int i = ...
0
votes
1answer
58 views
JSlider limit thumb movement
Is it possible to limit the movement of the JSlider thumb? It should not be possible for the user to move the slider thumb past a lower and upper limit value.
Edit:
I set the minimum and maximum ...
0
votes
1answer
37 views
JLabel that follows movement of JSlider knob
I'm trying to create a JSlider where instead of the major tick labels being displayed all the time, a single label is displayed which follows the JSlider knob and displays the value which the knob is ...
0
votes
1answer
62 views
How do i allow my Jslider to fit inside my JPanel?
I am programming a small application and have run into a big bump. I am stuck on why the JSlider won't allow me to add it to the JPanel.
When the last line of code reads:
"add.(slider);"
the ...
0
votes
0answers
80 views
How to update jslider with an audio file as progress bar
I have a wav audio file. I know how to play it using AudioImputStream in java. I learned creating a jslider. Now I have to use the slider as a progress bar with the audio, such as the audio plays, so ...
1
vote
1answer
58 views
JSlider Event Firing twice
I have a simple JSlider with an attached ChangeListerner. Here's the code:
JSlider slider = new JSlider();
slider.setMinorTickSpacing(2);
slider.setMajorTickSpacing(20);
slider.setPaintLabels(true);
...
0
votes
1answer
89 views
Problems making a paint program
I'm kinda new to java and have been trying to make a simple paint program, I have gotten everything to work except the color of the paint brush. Rigth now I set the color to blue but I want to make ...
0
votes
0answers
37 views
Java JSlider diamond is transparent?
When I make a JSlider, the slider "diamond" seems to be transparent (except for the border). I can't figure out why. Has anyone seen this before or have any ideas?
//create slider
JSlider ...
0
votes
1answer
47 views
What is the importance of frames per second in JSlider and what values to choose?
I am learning how to use the JSlider from oracle tutorials. I want to use it to change the value of a variable in my code and not to change the speed/fps of animations. I notice this "frames per ...
0
votes
2answers
64 views
How to specify a range of valid values in a Java GUI
I am creating an IMDB application which displays and organizes movies found on you computer (by looking up the metadata via an IMDB API).
In my search panel I want to give the user the option of ...
0
votes
1answer
76 views
Multiple JSliders - identifying changes
Am I able to add a change listener and define it on creation of a new JSlider?
The order in which I need to create and add JSliders means I can't define them beforehand, so I don't really have a way ...
1
vote
1answer
199 views
jQuery Drop Down Hover on Div (Not Just Link)
:)
So I'm trying to get this slider to hover when you try to go to the div as well as I will be using this for a dropdown menu.
If anyone could chime in I would really appreciate it. :D
...
3
votes
1answer
91 views
JSlider : can't make the knob move on the closest tick during drag
As explained in the title, i made a simple JSlider, and i successfully setted a minimum and maximum value, and a minor tick spacing, then i setted the "setSnapToTicks" to true. No problem with that ...
0
votes
0answers
129 views
JSlider to set volume
I have an application for playing music. I made buttons for play, resume,stop and more. Everything works fine except that i have a problem with JSlider for changing a volume of music,to be precise i ...
0
votes
0answers
36 views
Is it possible to to find the pixel position of the first tick mark on a jSlider scale?
I am trying to align a custom drawn graph to a jSlider's scale (the slider provides the X-axis scale for the graph). I need the slider knob to set values relating to the graph, so it really needs to ...
1
vote
1answer
111 views
JSlider ChangeListener value to JTextArea
What do I need to change to make this code so that the JTextArea shows the final value of the JSlider? Currently it prints all the spots the slider has been to. I just want it to show in the JTextArea ...
0
votes
0answers
220 views
Responsive Slider Not Working In Chrome
I just noticed my slider stopped working in chrome (it was working before!), not sure if it's related to any CSS changes I was making but I've tried undoing some and it hasn't made a difference. I ...
0
votes
5answers
71 views
Implementing a general switch statement in Java
I have a JSlider with values from 1 to 360. For each value I want to get an image from a database and put it to a JLabel. So I have 360 cases where the single difference is the variable switch used to ...
0
votes
1answer
141 views
a java multi thumb slider workable on nimbus look and feel
I needed a Multi Thumb Slider for java swing and i ended up using this
Multi knob (thumb) JSlider in Swing, after applying several tweaks to it as required by my application i made it working ...
0
votes
2answers
57 views
Is possible to set an unknown value on a JSlider?
Short:
Is possible to set an unknown value on a JSlider having no knob?
Long:
I'm working on a project that has a desktop client developed in Java Swing where the user is required to measure some ...
1
vote
1answer
96 views
JSlider getValueIsAdjusting odd behavior
...or maybe my programming is the odd behavior...
I am trying to create a class that I'm using a lot in my program. It is a class that creates a JPanel control that contains a Jlabel at the top in ...
0
votes
0answers
59 views
Two problems with my ImageViewer
My first question is how can I connect my image to JSlider, which will changes RGB values? The second concern JLabel's strange problem which was discribed not too good by me-> JLabel and JScrollPane ...
1
vote
1answer
59 views
How to assign the vaue of a JSlider to that of a variable
I have a slider inside another class and I want to assign the values that it has to that of a variable every time the value of the slider changes. I have this code
public double setSliderValue() {
...
0
votes
2answers
120 views
How to change default/start value of JSlider
I am wondering how I can change my start value of the JSlider I am using.
My code looks like this:
public ScaleController() {
// SLIDER 1:
// ...
1
vote
1answer
109 views
JSlider rendering with custom LabelTable
I want to use a JSlider to browse some chronological events, so I set a custom LabelTable so that it displays some Dates instead of the default integer values. My code goes like this:
JSlider slider ...
1
vote
2answers
165 views
How to move the JSlider with the mouse wheel
I have this code, but nothing happens. I don't know why the degreesSlider.getValue() + 1 does not work. I would be thankful for any suggestions.
degreesSlider.addMouseWheelListener(new ...
0
votes
1answer
375 views
Read a image from a longblob MySQL very fast
As the title says, I wanna retrive images (stored in longblob) very fast when the jslider is moved. I have 360 cases, and it is work with no error, but the problem consist in the lag/delay of each ...
1
vote
2answers
95 views
What is wrong with my ChangeListener
I have some code for a changeListener below. Basically I need to set the value of my Voltage variable to the value which my JSlider is currently positioned at. So if my slider was at 5 then my ...
1
vote
1answer
314 views
How do I make a JSlider background transparent? or How do I properly overlay JComponents in JLayeredPane?
I am trying to overlay a JSlider on top of a JProgressBar. I am using a JLayeredPane to hold the two components. I am adding the JProgressBar to the JLayeredPane and then adding the JSlider. So far, I ...
1
vote
3answers
142 views
How to check if value was set manually and not with setValue (JSlider, JSpinner)?
How can I check if the value of a JSlider or JSpinner was set via the graphical interface and not via the method setValue( int n) ?
0
votes
2answers
167 views
Java ChangeListener firing multiple times
I have a simple changelistener on a slider. Can anyone explain why it is fired 3 times when I click on a new position. Before I write code to save the prior value off somewhere to see if it really ...
3
votes
2answers
384 views
How to change JLabel background color using JSlider
JSlider with "ChangeListener" interface and handle"ChangeEvent" that will change JLabel background color when slider value is change.please help me i couldn't do it.
thanks in advance.i couldn't apply ...
0
votes
1answer
155 views
JSlider knob not updating (basic Java)
I'm implementing a simple horizontal JSlider in Java. No tick marks or anything like that. Probably as simple as humanly imaginable.
When I try to "move" the JSlider left-right by dragging it with ...
0
votes
1answer
145 views
How To Set JSlider Selected Value To Global Variable?
Does anyone know how I would be able to send the selected value in the event handler for JSlider, stateChanged and set it to a global variable?
For example
public class Slider extends JPanel {
...
1
vote
2answers
137 views
Java: Adding a “accept” button for a slider
I am trying to add a button for my slider. What i want is when i click the button, the value of the slider will be saved in a variable. But i am always getting and error while using the ...
0
votes
1answer
122 views
Egor Khmelev slider works great in FF, not in Chrome or IE
Here's the html
<span class='sliderholder'>
<input class='dosetup' type='text' id='headletterspace' name='headletterspace' value="1"></input></span>
If I initialize in a ...
2
votes
0answers
87 views
Jslider is laggy after overriding paint method
After overriding the paintTrack and paintThumb method of my JSlider it lags if I drag its thumb.
I've replaced the track and thumb with images. Any ideas how to solve the problem?
public class test ...
0
votes
2answers
402 views
conflict between bootstrap and JQuery responsive slider
I have a problem with a slider in the layout.
I have a slider and it is working but the image is compressed and distorted, instead of moving, as in the original slider.
I get the following error:
...
1
vote
1answer
228 views
JSlider changelistener not working
I'm attempting to implement a changelistener on a JSlider. I've tried two separate methods neither has worked. The commented out section is the first attempt. The one that's implemented now would ...
1
vote
2answers
390 views
JButton action listener issue. Slider values being displayed in fields
So I have a program that is due tomorrow and I have held out as long as I can trying to figure out what is wrong with my code. First and biggest issue that has had me stumped for quiet a while is my ...
0
votes
0answers
225 views
Implementing a user defined Exception in a shapes program for resizing the frame
I'm making a program that draws shapes. Once you click on a shape in a menu, it draws the shape below according to the value in a jSlider.
I'm trying to create an exception so that when the user ...
2
votes
1answer
82 views
JDialog appearing everytime my JSlider moves
Everytime I move my JSlider my JDialog box is appearing for each position it is moved, I only want it to be displayed once when the user tries to move the JSlider without them making a selection from ...
1
vote
1answer
107 views
How to repaint on resize of a custom JSlider
Easy Java question here. I have made a custom JSlider which paints squares at the last location the user has moved the slider to. We override paintcomponent and draw the squares relative to the size ...
2
votes
2answers
213 views
JSlider with two pointers
I want to give a user a convenient way to enter range from swing gui.
What can I use? A perfect option would be a slider with two pointers.



