Hola! Soy nuevo tanto haciendo paginas flash como visitando este foro y agradecería que me brindaran ayuda.
Resulta que tengo una animacion Flash para una pagina web. Ya esta terminada y todo. Hice 5 botones que me abrieran 5 galerias cada uno y los enlace con el siguiente codigo en Action Script 3:
weddingsbutt.addEventListener(MouseEvent.CLICK,clickHandler1);
groupsbutt.addEventListener(MouseEvent.CLICK,clickHandler2);
realstatebutt.addEventListener(MouseEvent.CLICK,clickHandler3);
landscapebutt.addEventListener(MouseEvent.CLICK,clickHandler4);
portraitsbutt.addEventListener(MouseEvent.CLICK,clickHandler4);
function clickHandler1(event:MouseEvent):void{
navigateToURL(new URLRequest("D:/WebDesign/Weddings_Gallery/index.html"),"_self");
}
function clickHandler2(event:MouseEvent):void{
navigateToURL(new URLRequest("D:/WebDesign/Groups_Gallery/index.html"),"_self");
}
function clickHandler3(event:MouseEvent):void{
navigateToURL(new URLRequest("D:/WebDesign/Real_State_Gallery/index.html"),"_self");
}
function clickHandler4(event:MouseEvent):void{
navigateToURL(new URLRequest("D:/WebDesign/Landscape_Gallery/index.html"),"_self");
}
function clickHandler5(event:MouseEvent):void{
navigateToURL(new URLRequest("D:/WebDesign/Portrait_Gallery/index.html"),"_self");
}
Pero al subirla y visualizarla desde el internet no responden los enlaces de los botones! Que tragedia. Desde mi archivo si responden pero desde internet no. ¿Me pego un tiro o hay remedio?
Necesito saber que hago mal.
De antemano muchas gracias.
