I'm using BalloonTip component in my program and I couldn't find the answer how to move it (to the right).
PoleTekstowe = new javax.swing.JTextField();
Balonik = new BalloonTip(PoleTekstowe, "Nie dzielimy przez 0!");
Balonik.setVisible(false);
Balonik.setCloseButton(BalloonTip.getDefaultCloseButton(), false);
You could use something like...
Which is demonstrated in the Tweaking a balloon tip's position section of the manual...
I'd also grab a copy of the source code, as it makes it eaiser to see how they build the tooltips...