Hi guys,
I created a widget.newButton(), and use the option ‘textOnly’. It works great, except that there is an unwanted shadow (a light grey color) behind the text. It is very noticeable when the text color is a lighter color.
Anyway to get rid of this unwanted shadow ?
btnSignIn = widget.newButton { left = 0, top = 0, width = 200, height = 50, textOnly = true, label = "Sign In", labelAlign = "center", font = TEXT\_STYLE\_BUTTON1, fontSize = 25, labelColor = { default = {102,199,250}, over = {DEFAULT\_BUTTON\_COLOR\_OVER.R, DEFAULT\_BUTTON\_COLOR\_OVER.G, DEFAULT\_BUTTON\_COLOR\_OVER.B} }, onRelease = onPressBtnSignIn } btnSignIn:setReferencePoint(display.TopCenterReferencePoint); btnSignIn.x = 0 btnSignIn.y = 0