Queria saber como son los parametros para indicar que el popup aparezca en el medio de la pantalla...En el siguiente codigo...Que es lo que tengo que modificar???
Gracias...
Cita:
on(release){
url = "http://www.web.com/imagesbig/"+imagen;
windowname = "Images";
windowproperties = 'width=610,height=500';
getUrl("javascript:window.open('" + url + "','" + windowname + "','" + windowproperties + "'); void(0);");
}
Intenté asi, pero no funciona!!on(release){
url = "http://www.web.com/imagesbig/"+imagen;
windowname = "Images";
windowproperties = 'width=610,height=500';
getUrl("javascript:window.open('" + url + "','" + windowname + "','" + windowproperties + "'); void(0);");
}
Cita:
on(release){
url = "http://www.web.com/imagesbig/"+imagen;
windowname = "Images";
windowproperties = 'width=610,height=500,top='(window.screen.height/2-600/2)',left='(window.screen.width/2-800/2)' ';
getUrl("javascript:window.open('" + url + "','" + windowname + "','" + windowproperties + "'); void(0);");
}
on(release){
url = "http://www.web.com/imagesbig/"+imagen;
windowname = "Images";
windowproperties = 'width=610,height=500,top='(window.screen.height/2-600/2)',left='(window.screen.width/2-800/2)' ';
getUrl("javascript:window.open('" + url + "','" + windowname + "','" + windowproperties + "'); void(0);");
}