mediamente non è possibile perchè non sei all'interno del browser per gestire i comandi javascript se non con escamotage non molto professionali.
puoi guardare tra questi programmi terze parti
http://flash-mx.html.it/servizi/software/proiettori.asp
alcuni fanno quello ke kiedi.
oppure prova ma non garantisco
sul frame
codice:
fscommand("allowscale", false);
function openBRwindow(url, name, toolbar, location, status, menubar, scrollbars, resizable, width, heigth)
{
pend++;
// link, titolo, toolbar, location, status, menubar, scrollbars, resizable, width, heigth
features = (toolbar) ? 'toolbar=yes,' : 'toolbar=no,';
features += (location) ? 'location=yes,' : 'location=no,';
features += (status) ? 'status=yes,' : 'status=no,';
features += (menubar) ? 'menubar=yes,' : 'menubar=no,';
features += (scrollbars) ? 'scrollbars=yes,' : 'scrollbars=no,';
features += (resizable) ? 'resizable=yes,' : 'resizable=no,';
getURL("javascript:window.open('" + url + "','" + name + "_" + pend + "','" + features + "width=" + width + ", height="+ heigth + "');void(0);");
}
sul pulsante che lancia la popup
codice:
on(release)
{
if(ww == undefined || isNaN(ww))
{
ww = 400//tue misure
}
if(hh == undefined || isNaN(hh))
{
hh = 200//tue misure
}
// link, titolo, toolbar, location, status, menubar, scrollbars, resizable, width, heigth
openBRwindow('open_window.html','MyTitle', toolbar, location, status, menubar, scrollbar, resizable, ww, hh);
}
hai escluso il loadMovie a priori?simulando una popup?