final Scrollbar sb = new Scrollbar(Scrollbar.HORIZONTAL);
final Checkbox cb1 = new Checkbox("Right");
add(b2, BorderLayout.WEST);
b2.setBackground(Color.RED);
b2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println("Action on b2");
if (sb.getValue() + sb.getBlockIncrement() <= sb.getMaximum()) {
sb.setValue(sb.getValue() + sb.getBlockIncrement());
} else {