I’ve noticed on a few games that they have News feeds where the developer send short messages to the user to see on the main menu. It could be either that an update is coming or some even promote their other apps there or some just send thank you messages etc.
has anyone done anything similar?
David [import]uid: 34126 topic_id: 6375 reply_id: 306375[/import]
I’ve done that and it’s a good technique to keep your users informed of updates. For some apps I would highly recommend it. [import]uid: 8045 topic_id: 6375 reply_id: 22068[/import]
local function networkListener( event )
if ( event.isError ) then
myText.text = “Network error!”
else
myText.text = “See Corona Terminal for response”
print ( "RESPONSE: " … event.response )
end
end
You can use a service that can be consumed by the request.
For example, an rss feed or even a simple “hello world” output from a php page or other dynamic source. Point your request and the server will respond with the result or data. You then take that response (for example hello holmes2870) and stuff the response to a variable. That variable can then be bound to a text box or native UI component.