I’ve seen link after link on these forums about how to align display.newText using setReferencePoint…but the bottom line is that the two just don’t seem to work together.
local myText = display.newText ( "", 100, 200)
myText.text = "This is an alignment check.:"
myText.align = "left"
myText:setReferencePoint(display.BottomLeftReferencePoint)
is the same as…
local myText = display.newText ( "", 100, 200)
myText.text = "This is an alignment check.:"
…and so on. Really haven’t the slightest idea how to print text that isn’t center-aligned. I figure I must be missing something really obvious…
[import]uid: 41884 topic_id: 12818 reply_id: 312818[/import]
[import]uid: 41884 topic_id: 12818 reply_id: 47068[/import]