I'm trying to create a website for a project. When I go to test the movie it gives me the error 1009. The problem started when I was trying to add in a image gallery. I'm totally new at this so someone please help. I'm using Flash 8 and Actionscript 3.0

PHP Code:
stop();
gallery_btn.addEventListener(MouseEvent.CLICKgalleryF);
function 
galleryF(event:MouseEvent):void
{
    
gotoAndStop(2);
}

texture_btn.addEventListener(MouseEvent.CLICKtextureF);
function 
textureF(event:MouseEvent):void
{
    
gotoAndStop(3);
}

galleryTwo_btn.addEventListener(MouseEvent.CLICKgalleryTwoF);
function 
galleryTwoF(event:MouseEvent):void
{
    
gotoAndStop(4);
}

about_btn.addEventListener(MouseEvent.CLICKaboutF);
function 
aboutF(event:MouseEvent):void
{
    
gotoAndStop(5);
}
//3D Gallery frame ->
radio_btn.addEventListener(MouseEvent.CLICKradioF);//image button goes to the frame where the image is
function radioF(event:MouseEvent):void
{
    
gotoAndStop(6);
}

car_btn.addEventListener(MouseEvent.CLICKcarF); //image button goes to the frame where the image is 
function carF(event:MouseEvent):void
{
    
gotoAndStop(7);
}

control_btn.addEventListener(MouseEvent.CLICKcontrolF);//image button goes to the frame where the image is
function controlF(event:MouseEvent):void
{
    
gotoAndStop(8);
}
//3D Gallery frame <-

//2D Gallery frame ->
error_btn.addEventListener(MouseEvent.CLICKerrorF);//image button goes to the frame where the image is
function errorF(event:MouseEvent):void
{
    
gotoAndStop(10);
}
//2D Gallery frame <-

//Texture Gallery frame ->
day_btn.addEventListener(MouseEvent.CLICKdayF);//image button goes to the frame where the image is
function dayF(event:MouseEvent):void
{
    
gotoAndStop(11);
}

night_btn.addEventListener(MouseEvent.CLICKnightF);//image button goes to the frame where the image is
function nightF(event:MouseEvent):void
{
    
gotoAndStop(12);
}
//Texture Gallery frame <-