I want to refresh a text during a process.
The process display only the first and the last text.
I checked the console, it displays “start upload file 1” and “start upload file 2”
Any help is welcome.
This is the code
function scene:enterScene( event ) ... teStatus = display.newText( "ready", display.contentWidth\*0.5, 0, native.systemFontBold, 18) ... teStatus.text = "start upload file 1" print "start upload file 1" ... teStatus.text = "start upload file 2" print "start upload file 2" ... teStatus.text = "Finished" end