Hello all. I am trying to create a swf that will load a specified image, then reload the same name image after 5 seconds. I traditionally would do this is Java, but that is not an option for me.
So the image changes every 5 seconds, but the name does not.
I have tried the following with no luck:
Code:
I greatly appreciate any help I can get from the flash experts.
Thanks
So the image changes every 5 seconds, but the name does not.
I have tried the following with no luck:
Code:
Code:
function loadImage(){
myMovieClip.loadMovie("path/to/image/image.jpg?ID="+getTimer());
onEnterFrame = function(){
if(Math.ceil(myMovieClip.getBytesLoaded()) == myMovieClip.getBytesTotal()){
delete onEnterFrame
loadImage();
}
}
}
Thanks






