Cita:
Iniciado por maycolalvarez por supuesto que es un link
, los links provienen de HTML, no de actionscript.
para hacer lo que quieres puedes hacer uso de window.open en JS, pero como usas flash, debes de buscar que función es equivalente, porque no dudo que exista, por ejemplo consultando la documentación (
http://help.adobe.com/en_US/AS2LCR/F...=00000564.html) veo que puedes aplicarlo en el 2do parámetro window de la función getURL
Amigo, te pasaste, gracias a ti, se soluciono el problema:
INDEX.HTML
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" language="javascript"> function abrir(){
window.open('Cambio21.html', 'Hijo');
}
<table width="100%" border="3" cellspacing="0" cellpadding="0"> <td onclick="abrir();">Abrir
</td> <td><iframe name="Padre" id="Padre" src="Frame1.html" width="500" height="700"></iframe> </td>
FRAME1.HTML
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<iframe id="Hijo" name="Hijo" src="Frame2.html" width="450" height="500"></iframe>
FRAME2.HTML
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
CAMBIO11.HTML
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Cambio 11
CAMBIO21.HTML
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Cambio 21
Gracias por el apoyo...
Saludos.