Non lo so ma se....
il tuo server supporta PHP
copia queste 2 righe dentro un file che nominerai foto.php
codice:
<?
$image = $_GET['img'];
?>
<html>
<head>
<title><? print $image ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
[img]<? print $image ?>[/img]
</body>
</html>
a questo punto dentro Flash puoi
codice:
larg= larghezza della tua foto
alt = altezza della tua foto
var w = System.capabilities.screenResolutionX/2;
var h = System.capabilities.screenResolutionY/2;
var x = Math.round(w-(larg/2));
var y = Math.round(h-(alt/2));
nome="foto001.jpg)
tuoURL = "foto.php?img="+nome;
feat="status=no, scrollbar=no, ecc....."
getURL("javascript:window.open('"+ tuoURL + "','image','width=" + larg + ",height=" + alt + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + "," + feat + "');void(0);");
Ciao