Hi all
I have a little problem. There is a some gif animated banner at here:
http://i032.radikal.ru/0801/57/c759c2f28eaa.gif (just for an example)
I get it by following code:
function ajaxPicture(url) {
  var req = new XMLHttpRequest();
  req.open('GET', url, false);
  req.send(null);

  if(req.status == 200) {
    return req.responseStream;
  }
}
and use it as a source for my img in this way:
imBanner.src =  ajaxPicture( Banner_URL );

I get this image but it is not animated. I see only the first frame.
how to fix it? :)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Desktop Developer Group" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Desktop-Developer?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to