Scene 1, Layer 'Actions', Frame 1, Line 27 1084: Syntax error: expecting rightbrace before _01_010.
I need help with this code PLEASE!!!!
Stop_btn.addEventListener(MouseEvent.CLICK, fl_ClickToPauseVideo_3);
function fl_ClickToPauseVideo_3(event:MouseEvent):void
{
assets/01_01_010.fla.pause();
}
Play_Btn.addEventListener(MouseEvent.CLICK, fl_ClickToPlayVideo_3);
function fl_ClickToPlayVideo_3(event:MouseEvent):void
{
assets/01_01_010.fla.play();
}
Restart_btn.addEventListener(MouseEvent.CLICK, fl_ClickToPauseVideo);
function fl_ClickToPauseVideo(event:MouseEvent):void
{
assets/01_01_010.fla.seek(0);
}
Tranz_Btn.addEventListener(MouseEvent.CLICK, fl_ClickToPosition_3);
var fl_TF_3:TextField;
var fl_TextToDisplay_3:String = "FEMA’s mission is to support our citizens and first responders to ensure that as a nation we work together to build, sustain, and improve our capability to prepare for, protect against, respond to, recover from, and mitigate all hazards.
FEMA Hazard Mitigation efforts to reduce the risks associated with potential hazard events are ongoing. This course focuses on FEMA Hazard Mitigation Joint Field Office operations, which are established after a Major Disaster declaration to focus on mitigating the effects of future hazards in the state affected by the disaster..";
function fl_ClickToPosition_3(event:MouseEvent):void
{
fl_TF_3 = new TextField();
fl_TF_3.autoSize = TextFieldAutoSize.LEFT;
fl_TF_3.background = true;
fl_TF_3.border = true;
fl_TF_3.x = 200;
fl_TF_3.y = 100;
fl_TF_3.text = fl_TextToDisplay_3;
addChild(fl_TF_3);
}
