Skip to main content
mollym28742302
Participant
March 5, 2020
Question

Unknown Error Message

  • March 5, 2020
  • 0 replies
  • 100 views

Hello,

 

I am getting this error message: Error #2044: Unhandled skinError:. text=[IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2124: Loaded file is an unknown type. URL: file:////Volumes/Macintosh%20HD/Users/mollymontealegre/Desktop/%SkinOverAll.swf"] and I can't figure out why. 

 

Here is the code for my videos:

/Make video invisible until play button is clicked.

var flvControl:FLVPlayback = budget;

budget.visible = false;

 

//Make video visible and play.

function playBudget (event:MouseEvent):void{

budget.visible = true;

flvControl.play();

}

budget_button.addEventListener(MouseEvent.CLICK, playBudget);

 

//Listen for the end of the video and make video invisible after done playing.

budget.addEventListener(Event.COMPLETE, playbackComplete);

function playbackComplete(event:Event):void{

     budget.visible = false;

}

 

//Make video invisible until play button is clicked.

var flvControl1:FLVPlayback = planning;

planning.visible = false;

 

//Make video visible and play.

function playPlanning (event:MouseEvent):void{

planning.visible = true;

flvControl.play();

}

planning_button.addEventListener(MouseEvent.CLICK, playPlanning);

 

//Listen for the end of the video and make video invisible after done playing.

planning.addEventListener(Event.COMPLETE, playbackComplete);

function playbackComplete1(event:Event):void{

     planning.visible = false;

}

 

//Make video invisible until play button is clicked.

var flvControl2:FLVPlayback = safety;

safety.visible = false;

 

//Make video visible and play.

function playSafety (event:MouseEvent):void{

safety.visible = true;

flvControl.play();

}

safety_button.addEventListener(MouseEvent.CLICK, playSafety);

 

//Listen for the end of the video and make video invisible after done playing.

safety.addEventListener(Event.COMPLETE, playbackComplete);

function playbackComplete2(event:Event):void{

     safety.visible = false;

}

 

//Make video invisible until play button is clicked.

var flvControl3:FLVPlayback = around;

around.visible = false;

 

//Make video visible and play.

function playAround (event:MouseEvent):void{

around.visible = true;

flvControl.play();

}

around_button.addEventListener(MouseEvent.CLICK, playAround);

 

//Listen for the end of the video and make video invisible after done playing.

around.addEventListener(Event.COMPLETE, playbackComplete);

function playbackComplete3(event:Event):void{

     around.visible = false;

}

 

Any thoughts on why this is happening?

 

Thank you!

    This topic has been closed for replies.