Loading...
Logo
Processing Forum
Hi!  Any help is GREATLY appreciated!  I am using the controlP5 slider and I want to be able to move both sides of the slider so that I can allow the user to manipulate a RANGE.

(i.e. Slider is 1-10 and I want user to be able to manipulate slider so that range is 3-6.)

Here is the code.... it is just the stuff from CP5.  Thank you!



///////////////////////////////////////////////////////

import controlP5.*;

ControlP5 cp5;
int myColor = color(0,0,0);

void setup() {
  size(700,200);
  noStroke();
  cp5 = new ControlP5(this);
    
  // add a vertical slider
  cp5.addSlider("slider")
     .setPosition(100,25)
     .setSize(200,20)
     .setRange(0,200)
     .setValue(128)
     ;
}

void draw() {
  fill(myColor);
  rect(0,100,width,70);
 
}

void slider(float theColor) {
  myColor = color(theColor);
  println("a slider event. setting background to "+theColor);
}




Replies(2)

See ControlP5 Range example.
Thank you so much for your help. SO USEFUL.   I have one follow up question about accessing the Min and Max value.

It says you get the values through a ‘controlEvent’ function.   I however need the Max and Min values of the slider so I can update my draw function. How do I either: 1. Get the ‘controlEvent’ to broadcast the value of the sliderMax and sliderMin so I can use those variables in my draw function or 2. Integrate the controlEvent into my draw function so the sliderMax and sliderMin variables are available for my draw-updates? I pasted my the CP5 Range code and my draw code below.   “sliderMax” is already inputted but I can’t figure out how to link the "sliderMax" value to the slider.   Thank you a ton!

 

 The portion from the ControlCP5 Range example:


Copy code
  1. void controlEvent(ControlEvent theControlEvent) {
  2.   if(theControlEvent.isFrom("rangeController")) {
  3.     // min and max values are stored in an array.
  4.     // access this array with controller().arrayValue().
  5.     // min is at index 0, max is at index 1.
  6.     sliderMin = int(theControlEvent.getController().getArrayValue(0));
  7.     sliderMax = int(theControlEvent.getController().getArrayValue(1));
  8.     print ("range update, done." + sliderMax);
  9.   }
  10.  
  11. }


My Draw code:

////

 

Copy code
  1. void draw() {
  2.   background(#dfdfdf);
  3.   //Draw the map
  4.   carte.draw();
  5.   textFont(titleFont);
  6.   textAlign(CENTER);
  7.   text("Arnold Arboretum Acquistions", width/2, 750);
  8.  
  9.   textFont(labelFont);
  10.   textAlign(LEFT);
  11.    
  12.  
  13.   for (Flower s : flowerList) {
  14.     if (s.yearPlanted < sliderMax && s.yearPlanted > 2) {
  15.     float xy[] = carte.getScreenPositionFromLocation(s.position);
  16.     fill(133, 165, 98);
  17.     ellipse(xy[0], xy[1], 2, 2);
  18.    
  19.     }
  20.    
  21.     if (s.yearPlanted < 2) {
  22.     float xy[] = carte.getScreenPositionFromLocation(s.position);
  23.     fill(102, 102, 102);
  24.     ellipse(xy[0], xy[1], 2, 2);
  25.    
  26.     }
  27.   }
  28. Family_count = Histogram.make(Histogram.filterByYear(flowerList, sliderMax));
  29.  
  30. //////////////////////////DISPLAY BAR GRAPH WITH TEXT/////////////////
  31.  
  32.   int y = 0; 
  33.   for (String p : familyNames){
  34.  
  35.           Integer value = Family_count.get(p);
  36.           if (value == null) {
  37.             value = 0;
  38.           }
  39.          
  40.           if (y < 48) {
  41.             textFont (labelFont);
  42.             textAlign(RIGHT);
  43.             text (p, 130,28 + (y*14));
  44.             rect(140,20 + (y*14),(value / 10),10);
  45.             y += 1;
  46.           } 
  47.  
  48.           else {
  49.             textFont (labelFont);
  50.             textAlign(RIGHT);
  51.             text (p, 440,8 + (y*14)-636);
  52.             rect(450,(y*14)-636,(value / 10),10);
  53.             y += 1;   
  54.  
  55.           }
  56.  } 
  57. }
  58.