I have a stack that references a website using this statement which works repeatedly in Rev Studio (build 950 version 4.0.0, on Mac 10.5.8 ) :
Code: Select all
put URL (siteToGet) into myURLvariable
In a MacOSX standalone however, getting the URL only works the first time it is called. On subsequent calls it returns a duplicate of the data it got in the initial call.
It seems as though it is caching the data. I gleaned this code from the dictionary but it hasn't helped.
Code: Select all
on unloadAll
repeat for each line thisURL in the cachedURLs
unload URL thisURL
end repeat
end unloadAll
The Internet script library is included in the standalone settings. I've tried it with everything selected, and with "Search for required inclusions".
Any thoughts on what I might try to get my standalone to work the same way it does in studio?