Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Estou tendo um problema o ExternalInternet.call no Ie ele não esta funcionando
AS3.0
import flash.external.ExternalInterface;
home1.addEventListener(MouseEvent.ROLL_OVER, home1Over);
home1.addEventListener(MouseEvent.ROLL_OUT, home1Out);
home1.addEventListener(MouseEvent.CLICK, home1Click);
function home1Over(Event:MouseEvent):void{
home1.gotoAndPlay("over");
}
function home1Out(Event:MouseEvent):void{
home1.gotoAndPlay("out");
}
function home1Click(Event:MouseEvent):void{
ExternalInterface.call("abrirPag","Home.html");
}
estudio1.addEventListener(MouseEvent.ROLL_OVER, estudio1Over);
estudio1.addEventListener(MouseEvent.ROLL_OUT, estudio1Out);
estudio1.addEventListener(MouseEvent.CLICK, estudio1Click);
function estudio1Over(Event:MouseEvent):void{
estudio1.gotoAndPlay("over");
}
function estudio1Out(Event:MouseEvent):void{
estudio1.gotoAndPlay("out");
}
function estudio1Click(Event:MouseEvent):void{
ExternalInterface.call("abrirPag","Estudio.html");
}
fotos1.addEventListener(MouseEvent.ROLL_OVER, fotos1Over);
fotos1.addEventListener(MouseEvent.ROLL_OUT, fotos1Out);
fotos1.addEventListener(MouseEvent.CLICK, fotos1Click);
function fotos1Over(Event:MouseEvent):void{
fotos1.gotoAndPlay("over");
}
function fotos1Out(Event:MouseEvent):void{
fotos1.gotoAndPlay("out");
}
function fotos1Click(Event:MouseEvent):void{
ExternalInterface.call("abrirPag","Fotos.html");
}
contato1.addEventListener(MouseEvent.ROLL_OVER, contato1Over);
contato1.addEventListener(MouseEvent.ROLL_OUT, contato1Out);
contato1.addEventListener(MouseEvent.CLICK, contato1Click);
function contato1Over(Event:MouseEvent):void{
contato1.gotoAndPlay("over");
}
function contato1Out(Event:MouseEvent):void{
contato1.gotoAndPlay("out");
}
function contato1Click(Event:MouseEvent):void{
ExternalInterface.call("abrirPag","Contato.html");
}
e no html
<div id="menu">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','1082','height','250','src','img/menu','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','img/menu','wmode','transparent' ); //end AC code
</script>
<noscript>
<object id="fTrans" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="1082" height="250">
<param name="movie" value="img/menu.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<embed src="img/menu.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1082" height="250"></embed>
</object>
</noscript>
</div>
jquery
<script language="javascript" src="jquery.min.js"></script>
<script language="javascript">
jQuery.noConflict();
jQuery(document).ready(function()
{
jQuery("#conteudo_mostrar").load("home.html");
});
function abrirPag(valor)
{
jQuery("#conteudo_mostrar").load("valor");
}
</script>
desde ja agradeço a ajuda
Carregando comentários...