Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/10/2006, 16:37
Avatar de selen16
selen16
 
Fecha de Ingreso: octubre-2006
Mensajes: 13
Antigüedad: 17 años, 6 meses
Puntos: 0
en la pagina en la ke tienes el flash con el boton pones este script:

<SCRIPT LANGUAGE=JavaScript>
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
</SCRIPT>

en el actionscript del boton :

on (release) {
getURL("javascript:openNewWindow(popout.htm','thew in','height=100,width=100,toolbar=no,scrollbars=ye s') ");
}

y el el html del pop out borras las dos lineas

<!DOCTYPE ....

y añades:

<style type="text/css">
<!--
body {
overflow-x: hidden;
}
</style>
para k desaparezca la barra horizontal.
Asi lo hice yo, seguro k hay una forma + rapida pero espero k t sirva.
Salu2