Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/04/2008, 22:17
Avatar de conexion-system32
conexion-system32
 
Fecha de Ingreso: abril-2008
Mensajes: 8
Antigüedad: 16 años, 9 meses
Puntos: 0
Pregunta Flash y Javascritp Problema para llamar una funcion

Que tal CM bueno me gustaria que me pudieran ayudar estoy hacienco un sitio en flash a ese mismo sitio le quiero integrar un ||:: light box ::||, y llamarlo desde flash.

code:
flash--> "para llamar una funcion desde flash"

on (release)
{
getURL("javascript:miFuncion()", "");
}

code:
html--> "recibe la instruccion de flash y ejecuta la misma"

<html>
...

<script language="JavaScript" type="text/JavaScript">

function miFuncion() {
<-- aqui las funciones que yo quiera -->
}
</script>

</html>

Hasta aqui vamos bien, como quiero integrar un light box y para llamarlo se hace asi....

<a href="http://www.google.com" rel="lyteframe" title="Search Google" rev="width: 400px; height: 300px; scrolling: no;">Google Search</a>

como puedo agregar, llamar esto, desde una funcion.... de antemano gracias CM