I’m trying to simply create 3 lines of text, left-justified, like so:
[lua]local txtOne = display.newText( localGroup, “First Line”, 100, 400, “Arial”, 24)
local txtTwo = display.newText( localGroup, “Second Line”, 100, 425, “Arial”, 24)
local txtThree = display.newText( localGroup, “Third Line”, 100, 450, “Arial”, 24)[/lua]
But what I am seeing is that the first line is at x=100, but then the 2nd and third lines appear to be centered about 50 pixels to the right, and not even centered or left justified at the same point.
This seems like it should be simple. Am I missing something obvious? [import]uid: 82378 topic_id: 24786 reply_id: 324786[/import]