2013-03-28 50 views

回答

0

也許這將工作:

local textObj = display.newText(.....); 
textObj:setReferencePoint(display.CenterRightReferencePoint); 
textObj.x = 100; 
0

在新版本有圖形2.0科羅娜SDK,你需要這樣做:

rowScore.anchorX = 1 

rowScore是你的變量與display.newText創建。 這裏有一個完整的例子:因爲它工作在Windows模擬器,但它不工作在Android上我沒用過的align="right"參數

local rowScore = display.newText({ 
    text="My Score", 
    fontSize=40 
}) 
rowScore.anchorX = 1 
rowScore.x = 30 
rowScore.y = 100 

通知。