La web es esta
http://www.lafiestadelfuego.com/
Mi problema es que solo abre la ventana en firefox
este es el scrip del boton.
Código ActionScript :
on (press)
{
_global.abrir_ventana = function (url, winName, ancho, alto, toolbar, menubar, scrollbars, resizable)
{
getURL("javascript:void(window.open(\'" + address + "\',\'" + winName + "\',\'" + "width=" + ancho + ",height=" + alto + ",toolbar=" + toolbar + ",menubar=" + menubar + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",top=\'+((screen.height/2)-(" + alto / 2 + "))+\',left=\'+((screen.width/2)-(" + ancho / 2 + "))+\'\'))", "");
};
aboton01.onRelease = function ()
{
address = "dragyrotacion.html";
winName = "La fiesta del Fuego";
ancho = 850;
alto = 450;
toolbar = 0;
menubar = 0;
scrollbars = 1;
resizable = 0;
abrir_ventana(address, winName, ancho, alto, toolbar, menubar, scrollbars, resizable);
};
}
Espero me puedan ayudar, porque como sabrán debe abrirse tanto en iexplore como en firefox.
Saludos,
