Figured I'd reply here with another question...
I've got a push button whose action is DIM f as FolderItem f = getFolderItem("tempData.txt") Object1.get("myURL", f)
and an HTTPSocket whose DownloadComplete event is
dim i as integer i = ticks while ticks - i < 5 * 60 wend
DIM f as FolderItem f = getFolderItem("tempData.txt") Object1.get("MYURL", f)
I added that 5 second pause because the data was flickering in and out out. So, now what happens is that there is data for 5 seconds, then an empty text file for the next 5 seconds, then updated data for another 5 seconds. Rinse and repeat.
I can't figure out how to stop the file from flickering empty and then full of data. I've tried looping under the push button's action, but that just doesn't update the data.
Any ideas?
Here's a
Gist with the code for better formatting.