davemikesell,
If it helps you any, you can add a setText() function to the returned text object like this…
local myText = display.newText("Hello World", 0, 0, native.systemFont, 10) myText.setText = function(object, text) object.text = text end myText:setText("This is my new text!")
I’m guessing that your app might have been using a Lua library at one point that was doing exactly the above. Not really sure, but this is one of the cool features of Lua.
In any case, I hope my above post didn’t come across as argumentative. I just wanted to demonstrate that we were taking this matter seriously and double check the code on our end to make sure we didn’t take anything away. I’m glad this matter is resolved and I hope my above code snippet might help save you some time without rewriting huge amounts of code.