SWFTools do not support UncaughtErrorEvent from Adobe Flex 4.5.1

As a workaround, remove that code. Con: in case something unexpected happens 
in the Flash runtime and/or browser, the error will not be caught and 
undefined behavior may kick in.

====================
--- a/actionscript/happyworm/jPlayer/JplayerRtmp.as
+++ b/actionscript/happyworm/jPlayer/JplayerRtmp.as
@@ -29,7 +29,6 @@
 	import flash.events.SecurityErrorEvent;
 	import flash.events.TimerEvent;
 	import flash.events.ErrorEvent;
-	import flash.events.UncaughtErrorEvent;
 	import flash.utils.clearInterval;
 	import flash.utils.setInterval;
 	import happyworm.jPlayer.ConnectManager;
@@ -81,39 +80,8 @@
 			seekingTimer.addEventListener(TimerEvent.TIMER,seekingHandler);
 
 			myStatus.volume = volume;
-			
-			addEventListener(UncaughtErrorEvent.UNCAUGHT_ERROR, uncaughtErrorHandler);
-
-			
 		}
 		
-		
-        
-        private function uncaughtErrorHandler(event:UncaughtErrorEvent):void
-        {
-			trace("UNCAUGHT ERROR - try loading again");
-			
-            if (event.error is Error)
-            {
-                var error:Error = event.error as Error;
-				trace(error);
-                // do something with the error
-            }
-            else if (event.error is ErrorEvent)
-            {
-                var errorEvent:ErrorEvent = event.error as ErrorEvent;
-                // do something with the error
-				trace(errorEvent);
-            }
-            else
-            {
-                // a non-Error, non-ErrorEvent type was thrown and uncaught
-            }
-			load();
-        }
-		
-		
-		
 		private function progressUpdates(active:Boolean):void
 		{
 			if (active)
