Hi Everybody!!!
It seems that there is a problem with Internet Explorer 7: I have a web page with animated gifs that works fine with Internet Explorer 6... but it seems that these animated gifs don't work well with Internet Explorer 7.
Now, from the begining: I created a web page in which I use some animated gifs to roll-up buttons. I use the traditional approach in which I load the gif image first into an array, as follows:
document.images[this.lngImageIndex].src = this.arrAnimationLib[this.lngNextAnimationSequence].imgAnimation.src;
Where: "this" is the typical JavaScript class implementation, arrAnimationLib is an array of objects, who then they have "imgAnimation" as a property which is an object where I previously load an animated gif.
The funny stuff is that the image does change, however, they always show the last frame of the animation: They never show any of the other of the previous 8 frames. I'm inclined to think that there is either a special setting that I need to implement in IE7 or something. As I said before, the same page works well in IE 6
Any feedback is greatelly appreciated!!!
Manuel