I’m currently using version .591 so to answer your question… no I’m not using daily builds (currently waiting until my app is a little further along before I purchase a sub). My other machine is a windows vista laptop. Here is an example of the code I was using to give you an idea…
[code]
–this will change depending on other things going on within the game
local condition = 1
–this holds my strings to be later displayed on screen as text
local textSelection = {
“Line one of text goes here \n Line Two of text will appear directly below”,
“This is the second display of text \n with a line break depending on what condition is”
}
–this piece of text will display one the strings from the textSelection array depending on whether condition is 1 or 2
local text = display.newText(textSelection[condition], 0, 0, native.systemFont, 35)
[/code] [import]uid: 50005 topic_id: 15148 reply_id: 56444[/import]