No button labels on devices!

hello!
So, i finished programming my first app and now I’m alpha testing it with some friends. I just found out that on every device that run the app button labels are not visualized! already scouted the net a bit for hints but no results =(
any ideas???

thanks in advance

How are you creating your buttons?

Rob

hi rob ,

this is one of the buttons

 

local lordSwitch = widget.newButton { label="\>", fontSize=50, id= "lordSwitch", onEvent = switchLord, top=720, left=380, emboss = false, shape = "circle", radius = 30, width = 200, height = 50, cornerRadius = 5, fillColor = { default={ 0, 0, 0, 0.1 }, over={ 0, 0, 0, 0 } }, strokeColor = { default={ 1, 1, 1, 1 }, over={ 1, 1, 1, 1 } }, strokeWidth = 5 }

Have you looked in your device’s console log for errors?  If you need help with that, please read:

http://docs.coronalabs.com/guide/basics/debugging/index.html

Rob

problem solved! i added the labelColor parameter in the code and now it works perfectly on the devices

How are you creating your buttons?

Rob

hi rob ,

this is one of the buttons

 

local lordSwitch = widget.newButton { label="\>", fontSize=50, id= "lordSwitch", onEvent = switchLord, top=720, left=380, emboss = false, shape = "circle", radius = 30, width = 200, height = 50, cornerRadius = 5, fillColor = { default={ 0, 0, 0, 0.1 }, over={ 0, 0, 0, 0 } }, strokeColor = { default={ 1, 1, 1, 1 }, over={ 1, 1, 1, 1 } }, strokeWidth = 5 }

Have you looked in your device’s console log for errors?  If you need help with that, please read:

http://docs.coronalabs.com/guide/basics/debugging/index.html

Rob

problem solved! i added the labelColor parameter in the code and now it works perfectly on the devices