Text Over Image

Hey All,

I am developing a app in which a image is set as the background. When I create a new text object it is hidden beneath the image. How do I overlay the text over the image? Thanks,

Matt [import]uid: 19514 topic_id: 5270 reply_id: 305270[/import]

make sure you create the image first then the text.

think z order

local image = display.newImage(…)
local myText = display.newText(…)
myText:setTextColor(r,g,b,[a]);

c
[import]uid: 24 topic_id: 5270 reply_id: 17440[/import]