Can you post the code you are using to fetch the images?
Thanks,
Jim
Sure, here it is.
CODE
request.open("GET", "our.feed.url", true);
request.onreadystatechange = function(){
if (this.readyState == 4 && this.status == 200) {
var xml = this.responseXML;
var result = xml.evaluate("xmlString");
token = decryptToken(result);
var radar_url = 'http://a.url.built.using.several.variables.that.yield.the.image.we.want';
ACCUWX.weatherData[ACCUWX.locationCode].radarImage = new KONtx.element.Image({
src: radar_url,
styles: {
//this stuff's pretty arbitrary.
},
remoteAsync: true
}).appendTo(radar_container);
That's the abridged version. Like I said, it's very hit-or-miss. It almost always gets it, but occaisionally I get the error that it can't load the image, and the big "MISSING" icon in it's place. Network lag maybe?
Thanks for the help!
-Tim