Hello all,
I having a some difficulties trying to figure out how to change the color of my text on my button, for some reason the text is Blue on all 3 buttons.
local btn_startBlack = widget.newButton
{
width = 200,
height = 50,
label = “Settings”,
defaultFile = “images/switchBlack.png”,
overFile = “images/switchBlack_pressed.png”,
onEvent = onStartTouchBlack
}
btn_startBlack.x = 235
btn_startBlack.y = ground.y -200
sceneGroup:insert(btn_startBlack)
I checked the widgets page, but I didn’t find a clear explanation.
Where did I go wrong?
Appreciate any help,
Thanks