tu doit faire appel à une function javascript via flash
remplace le text en couleur par tes parametres
actionScript
tonButton.onRelease = function () {
getURL("javascript:openNewWindow(
TONURL,'',
'height=
hauteur en pixel ,
width=
largeur en pixel,
toolbar=yes
,/*si tu veux la barre d'outil oui ou non*/
scrollbars=yes
/*barre de défilement oui ou non*/,
resizable=yes
/*redimentionnable oui ou non*/,
location=yes
/*barre d'adresse oui ou non*/'
);")}
JavaScript (dans ta page html)<script language="JavaScript">
var index = 0;
var tableau= new Array();
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
tableau[index] = windowName;
tableau[index] = window.open(URLtoOpen, windowName, windowFeatures);
index++;
}
</script>
[ Lien ]