I need to download a group of images from an external server and display them. I can grab the images from my server using network.download and place them into the system temporary (tmp) folder. What I can’t seem to do is display them with display.newImage call. Apparently, Corona executes the network.download API last. So when display.newImage goes and looks in the tmp folder for the images, they aren’t there because Corona hasn’t downloaded them yet.
How do I get the network.download API call to happen BEFORE . . .well . . . anything else happens. 
BTW – I also tried using display.loadRemoteImage but I don’t think that will work because I need to insert a bunch of images into a tableView. I actually got that to work but the images wouldn’t scroll with the rest of my data.