I'm trying to set the background color of an Action Pane Button so I changed the init-Method to this:
public void init()
{
super();
myButton.colorScheme(FormColorScheme::RGB);
myButton.backgroundColor(WinAPI::RGB2int(255,0,0));
}
but myButton (AutoDeclaration is on) does not become red.
Even when I set these properties by hand, the color does not change. The Button has an Action, where the Image is defined. But removing that won't help.