33333


public boolean mouseDrag(Event evtObj,int x,int y) {
 if(!DISABLE)
   if(testMove(x,y)) { //true if not collide and can move in space
   newX=x-pX;
   newY=y-pY;
   COMPLETE = false;
   slice_choose = getSlider(INDEX);
   }
   return true;
 }
 publice boolean mouseUp(Event evtObj,int x ,int y) {
   COMPLETE = true;
   DISABLE = false;
   repaint();
   return true;
   }
   int checkIndex(Point p) {
   int i;
