I have a tableview object that contains two columns. The first column is text that varys in length. I am trying to get the text in the column to left align. I tried using the align attribute in the newText function but it ignored the attribute.
Current Tableview
Some text 2
Some more text 3
Desired Result
Some text 2
Some more text 3
local rowTitle = display.newText(passdata[idx].textfield1,0, 0, “Helvetica”, 40)
rowTitle.x = rowCenterX
rowTitle.y = rowCenterY
rowTitle:setFillColor(0,0,0)-- 14/255, 164/255)
rowGroup:insert(rowTitle)
Thanks for any suggestions