mmm.. no me funciona.

disculpa tantas molestias.
voy a pegar mi código de el root y de mi swf, si alguien le puede hechar un ojo y decirme donde cometo el error, me seria de mucha ayuda. De antemano gracias.
root: ↓
Código ActionScript :
stop();
import flash.display.MovieClip;
import flash.events.Event;
import flash.display.DisplayObjectContainer;
import flash.events.MouseEvent;
import flash.display.SimpleButton;
import flash.text.*;
import flash.media.SoundMixer;
boton0.buttonMode = true;
boton1.buttonMode = true;
boton2.buttonMode = true;
boton3.buttonMode = true;
boton4.buttonMode = true;
boton0.mouseChildren = false;
boton1.mouseChildren = false;
boton2.mouseChildren = false;
boton3.mouseChildren = false;
boton4.mouseChildren = false;
////////////////////////////////////////////////////////////////////////////////////////////
boton0.addEventListener(MouseEvent.MOUSE_OVER, anima);
boton0.addEventListener(MouseEvent.MOUSE_OUT, noamina);
boton0.addEventListener(MouseEvent.MOUSE_DOWN, presboton0);
boton1.addEventListener(MouseEvent.MOUSE_OVER, anima);
boton1.addEventListener(MouseEvent.MOUSE_OUT, noamina);
boton1.addEventListener(MouseEvent.MOUSE_DOWN, presboton1);
boton2.addEventListener(MouseEvent.MOUSE_OVER, anima);
boton2.addEventListener(MouseEvent.MOUSE_OUT, noamina);
boton2.addEventListener(MouseEvent.MOUSE_DOWN, presboton2);
boton3.addEventListener(MouseEvent.MOUSE_OVER, anima);
boton3.addEventListener(MouseEvent.MOUSE_OUT, noamina);
boton3.addEventListener(MouseEvent.MOUSE_DOWN, presboton3);
boton4.addEventListener(MouseEvent.MOUSE_OVER, anima);
boton4.addEventListener(MouseEvent.MOUSE_OUT, noamina);
boton4.addEventListener(MouseEvent.MOUSE_DOWN, presboton4);
//sobre y fuera botones
function anima(e:Event):void
{
e.target.gotoAndPlay("anima");
}
//fin function anima;
function noamina(e:Event):void
{
e.target.gotoAndPlay("noanima");
}
//fin function noanima;
//fin de sobre y fuera de los botones
////////////////////////////////////////////////////////////////////////////////////////////
var myLoader:Loader = new Loader();
addChild(myLoader);
function carga(uri:String):void
{
addChild(myLoader);
myLoader.load(new URLRequest(uri));
myLoader.x = 63;
myLoader.y = 520;
addEventListener(Event.ENTER_FRAME,chekea);
SoundMixer.stopAll();
}
boton0.gotoAndPlay("anima");
carga("home.swf");
/////////////////////////////////////////////
var NumeroBoton:int;
var NumeroBoton2:int;
/////////////////////////////////////////////
function chekea(e:Event):void
{
switch (NumeroBoton)
{
case 0 :
boton0.gotoAndPlay("noanima");
NumeroBoton = NumeroBoton2;
break;
case 1 :
boton1.gotoAndPlay("noanima");
NumeroBoton = NumeroBoton2;
break;
case 2 :
boton2.gotoAndPlay("noanima");
NumeroBoton = NumeroBoton2;
break;
case 3 :
boton3.gotoAndPlay("noanima");
NumeroBoton = NumeroBoton2;
break;
case 4 :
boton4.gotoAndPlay("noanima");
NumeroBoton = NumeroBoton2;
break;
}//fin switch (NumeroBoton)
}//fin function chekea
////////////////FUNCTION presboton0////////////////
function presboton0(e:Event):void
{
conten_header.gotoAndPlay("home");
boton0.gotoAndStop(11);
NumeroBoton2 = 0;
carga("home.swf");
}//fin function presboton0
////////////////FUNCTION presboton1////////////////
function presboton1(e:Event):void
{
conten_header.gotoAndPlay("aboutus");
boton1.gotoAndStop(11);;
NumeroBoton2 = 1;
carga("aboutus.swf");
}//fin function presboton1
////////////////FUNCTION presboton2////////////////
function presboton2(e:Event):void
{
conten_header.gotoAndPlay("services");
boton2.gotoAndStop(11);
NumeroBoton2 = 2;
carga("services.swf");
}//fin function presboton2
////////////////FUNCTION presboton3////////////////
function presboton3(e:Event):void
{
conten_header.gotoAndPlay("home");
boton3.gotoAndStop(11);
NumeroBoton2 = 3;
carga("news.swf");
}//fin function presboton3
////////////////FUNCTION presboton4////////////////
function presboton4(e:Event):void
{
conten_header.gotoAndPlay("contactus");
boton4.gotoAndStop(11);
NumeroBoton2 = 4;
carga("contactus.swf");
}//fin function presboton4
//fin de las funciones pres#
///////////////////////////////////////////////////////////////////////////////////////////////
//botones del pie de página
btn_0.addEventListener(MouseEvent.CLICK, presboton0)
btn_1.addEventListener(MouseEvent.CLICK, presboton1)
btn_2.addEventListener(MouseEvent.CLICK, presboton2)
btn_3.addEventListener(MouseEvent.CLICK, presboton3)
btn_4.addEventListener(MouseEvent.CLICK, presboton4)
///////////////////////////////////////////////
//fuente embebida
var font:myFont=new myFont();
var txt_fmt:TextFormat=new TextFormat();
txt_fmt.font=font.Eras_Demi;;
txt_fmt.size=24;
var txt:TextField=new TextField();
txt.autoSize=TextFieldAutoSize.CENTER;
txt.defaultTextFormat=txt_fmt;
txt.embedFonts=true;
boton0.txt.text = "HOME";
boton1.txt.text = "ABOUT US";
boton2.txt.text = "SERVICES";
boton3.txt.text = "NEWS";
boton4.txt.text = "CONTACTUS";
buscador.text = "";
conten_header.services.txt.text="The best services for your convenience";
txt.selectable=false;
y mi swf: ↓
Código ActionScript :
stop();
import flash.display.MovieClip;
import flash.events.Event;
import flash.display.DisplayObjectContainer;
import flash.events.MouseEvent;
import flash.events.MouseEvent;
btn0.buttonMode = true;
btn1.buttonMode = true;
btn2.buttonMode = true;
btn0.addEventListener(MouseEvent.ROLL_OVER, animabtn);
btn1.addEventListener(MouseEvent.ROLL_OVER, animabtn);
btn2.addEventListener(MouseEvent.ROLL_OVER, animabtn);
btn0.addEventListener(MouseEvent.ROLL_OUT, noanimabtn);
btn1.addEventListener(MouseEvent.ROLL_OUT, noanimabtn);
btn2.addEventListener(MouseEvent.ROLL_OUT, noanimabtn);
function animabtn(e:Event):void
{
e.target.gotoAndPlay("sobre");
}
//fin function anima;
function noanimabtn(e:Event):void
{
e.target.gotoAndPlay("fuera");
}
/////////////////////////////////////////////////////////////////////////////////
btn0.addEventListener(MouseEvent.CLICK, clickbtn0);
btn1.addEventListener(MouseEvent.CLICK, clickbtn1);
btn2.addEventListener(MouseEvent.CLICK, clickbtn2);
news_btn.addEventListener(MouseEvent.CLICK, news);
function clickbtn0(e:MouseEvent):void
{
MovieClip(root).carga("aboutus.swf");
//asi lo intento y no me lo carga
}
//fin function anima;
//sobre y fuera botones
function clickbtn1(e:MouseEvent):void
{
MovieClip(root).btn1.addEventListener(MouseEvent.CLICK, MovieClip(root).presboton2)
//asi tampoco lo carga
}
//fin function anima;
//sobre y fuera botones
function clickbtn2(e:MouseEvent):void
{
root.carga("contactus.swf"); //tampoco
}
//fin function anima;
function news(e:MouseEvent):void
{
carga("news.swf");//menos :S
}
//fin function anima;
news_btn.buttonMode = true;
text_btn.buttonMode = true;
si alguien me puede ayudar, sería genial..

todo tipo de crítica, es totalmente bienvenida, con los brazos abiertos, es mi 1º web, y se que debo mejorar en mucho, x lo tanto adelante, se pueden desestresar!
Gracias de antemano comunidad!