So i am a bit of a noob with this part. Hopefully I can get some advice or help from one of you Corona geniuses out there 
I have an app that I am working on for a client, it pulls a formatted XML file from a web service. This part works no problem. I can print all my info I need to extract into the terminal without any issues. This is where I am now stuck. i have been hunting the forums for an example to no avail yet. I need to take the data and put it on the screen. Here is what I was attempting…
for i=1,#events.child do
-- store the address in the message table
event[i] = events.child[i]
end
for i=1,#event do
-- extract data from table and store in local variables
-- for easier readability/access:
local id = event[i].child[4].value
local title = event[i].child[13].child[1].value
local subject = event[i].child[5].value
--local body = event[i].child[13].child[1].value
-- print message data to terminal
print( "\n--------------------------------------------------" )
print( "To: ", id)
print( "From: ", title )
print( "Subject:", subject)
--print( "Body: ", body )
myText[i] = display.newText[i]("", \_W, \_H, native.systemFont, 12)
myText[i]:setTextColor(255, 255, 255)
myText[i].text = subject
myText[i].size = 16
localGroup:insert(myText[i])
Like I said, I can get the data to display in the terminal without issue. but for the life of me I can not seem to figure out how to display this on the screen. What has to happen is I need the data to display in a table with one line of data linked into an image. If this was PHP for a web page I could do this easy, but the text object is giving me grief.
Thanks in advance for any help or advice
[import]uid: 87791 topic_id: 23797 reply_id: 323797[/import]
