ho anche notato che nel codice che ti ho scritto c'è una virgola di troppo ed IE non perdona queste cose, gli causano problemi anche i commenti, prova con questo:

Codice PHP:
var flashURLs = ['swf/myFlash1.swf''swf/myFlash2.swf''swf/myFlash3.swf'];
var 
currentFlash 0;

function 
changeFlash()
{
   $(
'MySWF').empty();
   var 
obj = new Swiff(flashURLs[currentFlash], {
        
id'MyFlash',
        
width500,
        
height400,
        
params: {           
        },
        
vars: {            
        }        
   });
   $(
'MySWF').grab(obj);
   if(
currentFlash >= flashURLs.length 1)
      
currentFlash 0;
   else
      
currentFlash++;
}

window.addEvent('domready', function(){
   
changeFlash();
   var 
inter setInterval(changeFlash15000);
})