onClipEvent (mouseDown) {
getURL("login/registro.php");
}
el problema es que cuando se carga en otras paginas distintas al home, ya no sirve esta ruta.
Para la pagina yo cree una funcion en php que incluyo en todas las paginas, la cual contiene el flash y le coloque el siguiente codigo para que reconociera las rutas:
Código PHP:
function do_html_header()
{
global $ruta;
?>
<table width="1000" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#BBBBFF">
<tr>
<td valign="top" width="1000" height="281">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="1000" height="281">
<param name="movie" value="<?php echo $ruta; ?>/flash/header_v7.swf">
<param name="quality" value="high">
<param name="menu" value="false">
<!--[if !IE]> <-->
<object data="<?php echo $ruta; ?>/flash/header_v7.swf"
width="1000" height="281" type="application/x-shockwave-flash">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">
FAIL (the browser should render some flash content, not this).
</object>
<!--> <![endif]-->
</object></td>
</tr>
</table>
<?
}?>
gracias.