TexMex6262
12-10-2008, 05:46 PM
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
stop();
gallery_btn.addEventListener(MouseEvent.CLICK, galleryF);
function galleryF(event:MouseEvent):void
{
gotoAndStop(2);
}
texture_btn.addEventListener(MouseEvent.CLICK, textureF);
function textureF(event:MouseEvent):void
{
gotoAndStop(3);
}
galleryTwo_btn.addEventListener(MouseEvent.CLICK, galleryTwoF);
function galleryTwoF(event:MouseEvent):void
{
gotoAndStop(4);
}
about_btn.addEventListener(MouseEvent.CLICK, aboutF);
function aboutF(event:MouseEvent):void
{
gotoAndStop(5);
}
//3D Gallery frame ->
radio_btn.addEventListener(MouseEvent.CLICK, radioF);//image button goes to the frame where the image is
function radioF(event:MouseEvent):void
{
gotoAndStop(6);
}
car_btn.addEventListener(MouseEvent.CLICK, carF); //image button goes to the frame where the image is
function carF(event:MouseEvent):void
{
gotoAndStop(7);
}
control_btn.addEventListener(MouseEvent.CLICK, controlF);//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.CLICK, errorF);//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.CLICK, dayF);//image button goes to the frame where the image is
function dayF(event:MouseEvent):void
{
gotoAndStop(11);
}
night_btn.addEventListener(MouseEvent.CLICK, nightF);//image button goes to the frame where the image is
function nightF(event:MouseEvent):void
{
gotoAndStop(12);
}
//Texture Gallery frame <-
stop();
gallery_btn.addEventListener(MouseEvent.CLICK, galleryF);
function galleryF(event:MouseEvent):void
{
gotoAndStop(2);
}
texture_btn.addEventListener(MouseEvent.CLICK, textureF);
function textureF(event:MouseEvent):void
{
gotoAndStop(3);
}
galleryTwo_btn.addEventListener(MouseEvent.CLICK, galleryTwoF);
function galleryTwoF(event:MouseEvent):void
{
gotoAndStop(4);
}
about_btn.addEventListener(MouseEvent.CLICK, aboutF);
function aboutF(event:MouseEvent):void
{
gotoAndStop(5);
}
//3D Gallery frame ->
radio_btn.addEventListener(MouseEvent.CLICK, radioF);//image button goes to the frame where the image is
function radioF(event:MouseEvent):void
{
gotoAndStop(6);
}
car_btn.addEventListener(MouseEvent.CLICK, carF); //image button goes to the frame where the image is
function carF(event:MouseEvent):void
{
gotoAndStop(7);
}
control_btn.addEventListener(MouseEvent.CLICK, controlF);//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.CLICK, errorF);//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.CLICK, dayF);//image button goes to the frame where the image is
function dayF(event:MouseEvent):void
{
gotoAndStop(11);
}
night_btn.addEventListener(MouseEvent.CLICK, nightF);//image button goes to the frame where the image is
function nightF(event:MouseEvent):void
{
gotoAndStop(12);
}
//Texture Gallery frame <-