Pues yo tengo algo así, reduce el tamaño de los archivos flash pero afecta a la calidad de los swf :(
Código:
function modificarswf(){
if(screen.width>=1280)
{
document.getElementById('FlashID2').width = 1170;
document.getElementById('FlashID3').width = 1170;
document.getElementById('FlashID2').height = 480;
document.getElementById('FlashID3').height = 202;
}
else if(screen.width<=1024)
{
document.getElementById('FlashID2').width = 995;
document.getElementById('FlashID3').width = 995;
document.getElementById('FlashID2').height = 409;
document.getElementById('FlashID3').height = 171;
document.getElementById('mod1').width = 995;
document.getElementById('mod2').width = 995;
document.getElementById('mod1').height = 409;
document.getElementById('mod2').height = 172;
}
}
Y en <body> pones onload="modificarswf()".
No sé si te refieres a esto...