Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
RobMich
Channel Surfer

Re: Can we style dialog boxes?

I have not experimented with this setting, but according to the documentation, the focusedTextColor field on the buttongroup should be working. 

optiondialog.ButtonGroup.focusedTextColor = "0xFFFFFFFF"


 

Are you using a custom font for the button text?  That could be causing it not to work.

0 Kudos
chaklasiyanikun
Roku Guru

Re: Can we style dialog boxes?

No, I don't use Custom Font. I tried the same as per Document mention. My Example is here. But no luck.

0 Kudos
white-wolf
Reel Rookie

Re: Can we style dialog boxes?

I managed to make this by using a darker white 

dialog.buttonGroup.textColor = "0xFFFFFFFF"
dialog.buttonGroup.focusedTextColor = "0xDDD9D7FF". 'darker white (shows as white)

hope it helps

0 Kudos