Hey there guys,
so i have my score set up like this
local score = 0
local scoreText = display.newRetinaText( addThousandsSeparators(score), 25, 25, “GrilledCheese BTN Toasted”, 44)
scoreText:setReferencePoint(display.CenterLeftReferencePoint)
scoreText.x = 98
scoreText.y = 28
scoreText.alpha = 0.4
scoreText:setTextColor(1,1,1)
localGroup:insert( scoreText )
it sits right where i want it. In the SIM it works perfect when i change score it keeps its alignment
however on the iPhone 4s as son as i change score it moves over to the right.
when i update the score i do this
local function updateStats()
scoreText.text = addThousandsSeparators(score)
scoreText:setReferencePoint(display.CenterLeftReferencePoint)
scoreText.x = 98
end
anyone have an idea on why this happens?
cheers
[import]uid: 8094 topic_id: 23829 reply_id: 323829[/import]

