Unload external video mp4 files in Animate Hello and thanks for any help in advance. I am attempting to create a simple presentation in animate that plays external videos from a button interface. I have imported the videos to 6 separate frames in the scene, frames 10, 20, 30, 40, 50, 60. The interface is on frame 1 containing 6 buttons. Code frame 1 - Cause.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame);function fl_ClickToGoToAndStopAtFrame(event:MouseEvent):void{gotoAndStop(10);}Blower.addEventListener(MouseEvent.CLICK, f2_ClickToGoToAndStopAtFrame);function f2_ClickToGoToAndStopAtFrame(event:MouseEvent):void{gotoAndStop(20);}Leak.addEventListener(MouseEvent.CLICK, f3_ClickToGoToAndStopAtFrame);function f3_ClickToGoToAndStopAtFrame(event:MouseEvent):void{gotoAndStop(30);}SVideo.addEventListener(MouseEvent.CLICK, f4_ClickToGoToAndStopAtFrame);function f4_ClickToGoToAndStopAtFrame(event:MouseEvent):void{gotoAndStop(40);}SJet.addEventListener(MouseEvent.CLICK, f5_ClickToGoToAndStopAtFrame);function f5_