Hi. Just started using Corona. Really love it but I have a question already
I am able to do stuff like:
local options = { parent = group, text = text, x = x, y = y, width = width, height = height, font = native.systemFontBold, fontSize = 18, align = "left" } local txt = display.newText( options ) txt.text = "New String"
That will set the new text as expected.
However I am not able to do:
txt.fontSize = 1
What am I missing here?
Thanks.