• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Unknown Error Message

New Here ,
Mar 05, 2020 Mar 05, 2020

Copy link to clipboard

Copied

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!

Views

54

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
no replies

Have something to add?

Join the conversation