Dave,
Thank you soooo much for taking the time to look at my problem.
I followed your instructions and the swf loads... but not the images.
So here is the content of the html file :
HTML Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>galleriasmall</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body bgcolor="#666666">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', '800',
'height', '250',
'src', 'galleriasmall',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'galleriasmall',
'bgcolor', '#666666',
'name', 'galleriasmall',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'galleriasmall',
'salign', ''
); //end AC code
}
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="800" height="250" id="galleriasmall" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="galleriasmall.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#666666" /> <embed src="galleriasmall.swf" quality="high" bgcolor="#666666" width="800" height="250" name="galleriasmall" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</noscript>
</body>
</html>
and here is the content of the php file :
PHP Code:
<?
$dir = "images";
echo "<?xml version='1.0' encoding='UTF-8'?>\n";
echo "<galeria>\n";
if (is_dir($dir)) {
if ($d = opendir($dir)){
while (($file = readdir($d))!== false){
if (filetype($dir.'/'.$file) == 'file'){
echo " <fotos gde=\"images/{$file}\"/>\n";
//$vars .= "fotos gde=".$file;
//echo $vars;
}
}
closedir($d);
}
}
echo "</galeria>\n";
?>
I hope that will help... 
Once again thank you very much for your help.
Damien