Heres my code: import flash.events.MouseEvent;/*When home button is
clicked, goes directly back to the home
frame*/home_btn.addEventListener(MouseEvent.CLICK,goHome);/*Function
acts as a command when MouseEvent is interacted with*/function
goHome(event:MouseEvent):void {/* Goes to home frame and stops
animation*/gotoAndStop("home"); /* Curly brace next line */}/*Function
tells animation to set language to display as Englsih*/function
setLanguage():void { /* If statement is the choice at the cros...