Android Question Can I use CSBuilder to change Msgbox button colours?

TnP

Member
Licensed User
Longtime User
I can change the title and the message body font/text colour, however, I seem to be unable to change the text for the buttons (yes, no etc).
Is it possible at all?
Here's what I tried:
B4X:
msgRes = Msgbox2(cs.Initialize.Alignment("ALIGN_CENTER").Typeface(myFont).Color(0xFF96B515). _
    Append("Message body").PopAll, "", cs.Initialize.Color(0xFF96B515).Append("Yes").popAll, _
    "", "No", Null)
    If msgRes = DialogResponse.Positive Then ...
The text change is made, but none of the formatting changes are.
Thanks in advance!
 
Top