Edit: Ignore this message, see the next post.
Well I kind of found a way to do it. Here's what I have so far.
UpdateMinimum sets the value of a text object based on minBar's percent.
Code:
var minBarMouseDown;
function minBarOnMouseDown(){
minBarMouseDown = true;
}
function minBarOnMouseUp(){
updateMinimum(); // in case they don't move the mouse
minBarMouseDown = false;
}
function minBarOnMouseMove(){
if(minBarMouseDown == true){
updateMinimum();
}
}
Only problem is, as the mouse moves, it shows the value of the last update, not the current position of the mouse.
Do we know if its possible to get the
current position of percent on the progress bars?