Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/06/2004, 09:42
Avatar de Ludwingg
Ludwingg
 
Fecha de Ingreso: diciembre-2002
Ubicación: San Salvador
Mensajes: 951
Antigüedad: 21 años, 4 meses
Puntos: 5
en tu archivos HTML, copia y pega lo siguiente entre las etiquetas <head>...</head>:

<script language="JavaScript">
function imprimir(){
if (!window.open){
//el browser tiene que ser 4.0 ó superior, sino no ejecutara la accion
alert("Tu browser no soporta esta accion");return false
}
window.print()
}
</script>

en las acciones tu boton Flash:

on(release){
getURL("javascript:imprimir()");
}