flexbuilder

Flex 4 wont recognise flash.events.UncaughtErrorEvent

test.mxml: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()" x="0" y="0" width="703" height="609" xmlns:ns1="*" > <mx:Script> <![CDATA[ import flash.events.*; // stuff private function onUncaughtError(e:UncaughtErrorEvent):void { //Do Stuff } This gives: apites...