UTFT Button library and border problem

Hi, I'm using the UTFT button library a week now but I'm stucked in a problem I cannot solve..
I want to draw buttons with no border but even if a set the button border to be the same colour of the screen background I always see a border around the button.. I've set in the "myButtons.setButtonColors" function both the border and the highlight values to the same colour of the screen background but with no results... Is there someone that succeded in drawing buttons without borders????
Any help is welcome

You didn't show your code, so I cannot see where you have gone wrong!! But if you set the button colours before defining the buttons, and you set the 3rd parameter same as screen background, then there is no border.

Eg :-

  myButtons.setButtonColors(VGA_WHITE, VGA_GRAY, VGA_BLACK, VGA_RED, VGA_BLUE);
  but1 = myButtons.addButton( 10,  20, 300,  30, "Button 1");
  but2 = myButtons.addButton( 10,  60, 300,  30, "Button 2");

If you also want no border when the button is pressed, set the 4th parameter to screen background.

Regards,

Graham