Pour ma part, ni chrome ni ff n'ouvre le swf malgré les modifications.
Vous trouverez un script qui crée un fichier html par swf ci-dessous qui rempli 90% de votre résolution actuelle.
swf2html.sh
#!/bin/bash
for i in `ls -1 *.swf`
do
echo "$i --> ${i//.swf/.html}"
cat << EOF > ${i//.swf/.html}
<!DOCTYPE html>
<html lang="en">
<head>
<title>$i</title>
<meta charset="utf-8">
</head>
<body>
<embed width=$( xrandr --current |awk -F, '/^Screen/ {print $2}'|awk '{print $2*9/10" height="$NF*9/10}') src="$i">
</body>
</html>
EOF
done