Using this:
local aboutText = display.newText(options) grp:insert(aboutText)
the text does not show (on a white background).
But, using this:
local aboutText = display.newText(options) aboutText:setFillColor(red) grp:insert(aboutText)
it does show, but as black letters, not red …
So, 2 questions:
-
why do I need to set the fillcolor in the first place?
-
why is the text not in red?
TIA,
/Arie