salve,

ho un pulsante realizzato con flash. Quando ci clicco si apre un popup che mostra la foto grande. Vorrei inserire una didascalia sotto la foto nel popup. C'è modo per farlo?

Per il Pulsante:

on (release) {
getURL("javascript:apriPopupCentrata('1.jpg', 'HTML', 400, 300, 'status=yes, toolbar=yes')");
}

Questi nella pagina .html

<script language="JavaScript" type="text/JavaScript">
<!--
function apriPopupCentrata(nome, titolo, lar, alt, feat){
var wdt = screen.width;
var hgt = screen.height;
var x = Math.round( (wdt / 2) - (lar / 2) );
var y = Math.round( (hgt / 2) - (alt / 2) );
window.open(nome, titolo, 'width=' + lar + ',height=' + alt + ',left=' + x + ',screenX=' + x + ',top=' + y + ',screenY=' + y + ',' + feat);
}
//-->
</script>

travati sul sito html.it

Grazie