The trouble I'm having is that I can't clear out the contents of that
getNetText operation each time I run the app inside the authoring
environment, nor clear it out between different movies in the same
authoring application session.
If what you mean is that different getNetText() calls to the same URL
are returning the same result string when the results should be
different, then the problem is that you're getting a cached value. Add
a CGI variable, even if it's fake, and all should be well, al la:
getNetText("http://mydomain.com/myXMLFile.xml?time=" & urlencode(the time))
or
getNetText("http://mydomain.com/myXMLFile.xml?time=" & the milliseconds)
Doesn't matter what the CGI var is, or its value. (As long as it's
unique.) The point is that calls like these won't get stuck in cache.
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email
[email protected] (Problems, email [EMAIL PROTECTED]). Lingo-L is for
learning and helping with programming Lingo. Thanks!]