You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/04/06 16:27:09 UTC

[1/2] try to fix build

Repository: flex-falcon
Updated Branches:
  refs/heads/develop 02ff887e1 -> 391a051e8


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/391a051e/flex-compiler-oem/src/macromedia/asc/embedding/WarningConstants.java
----------------------------------------------------------------------
diff --git a/flex-compiler-oem/src/macromedia/asc/embedding/WarningConstants.java b/flex-compiler-oem/src/macromedia/asc/embedding/WarningConstants.java
index 58c3e6a..b1ea9aa 100644
--- a/flex-compiler-oem/src/macromedia/asc/embedding/WarningConstants.java
+++ b/flex-compiler-oem/src/macromedia/asc/embedding/WarningConstants.java
@@ -663,10569 +663,8 @@ public class WarningConstants
    
    public static void initWarningConstants() 
    {
-/*
-	   initWarningConstantsEN();
-      initWarningConstantsCN();
-      initWarningConstantsCS();
-      initWarningConstantsDA();
-      initWarningConstantsDE();
-      initWarningConstantsES();
-      initWarningConstantsFI();
-      initWarningConstantsFR();
-      initWarningConstantsIT();
-      initWarningConstantsJP();
-      initWarningConstantsKR();
-      initWarningConstantsNB();
-      initWarningConstantsNL();
-      initWarningConstantsPL();
-      initWarningConstantsPT();
-      initWarningConstantsRU();
-      initWarningConstantsSV();
-      initWarningConstantsTR();
-      initWarningConstantsTW();
- 
- */
    }
 
    static final AscWarning[] warningConstantsEN= new AscWarning[kNumWarningConstants]; 
 
-	/*
-   private static void initWarningConstantsEN() 
-   {
-      int index=0;
-        warningConstantsEN[index++] = new AscWarning(kWarning_NoTypeDecl, "Missing type declaration." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NoTypeDecl_specific, "%s '%s' has no type declaration." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadUndefinedComparision, "Illogical comparison with undefined.  Only untyped variables (or variables of type *) can be undefined." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadUndefinedComparision_specific, "Variables of type %s cannot be undefined. The value undefined will be type coerced to %s before comparison." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ConstructorReturnsValue, "Function used in new expression returns a value.  Result will be what the function returns, rather than a new instance of that function." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ConstructorReturnsValue_specific, "Migration issue: Result of new %s will be the return value of %s, rather than a new instance of that function." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BooleanConstructorWithNoArgs, "Boolean() with no arguments returns false in ActionScript 3.0.  Boolean() returned undefined in ActionScript 2.0." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BooleanConstructorWithNoArgs_specific, "Use of Boolean() with no arguments." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NumberFromStringChanges, "In ActionScript 3.0, white space is ignored and '' returns 0. Number() returns NaN in ActionScript 2.0 when the parameter is '' or contains white space." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NumberFromStringChanges_specific, "Migration issue: When the Number('') function is called with an empty string argument it returns 0 in ActionScript 3.0, and NaN in ActionScript 2.0." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ArrayToStringChanges, "Array.toString() format has changed." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ArrayToStringChanges_specific, "Migration issue: Array.toString() handling of null and undefined elements has changed." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DepricatedPropertyError, "Unsupported ActionScript 2.0 property." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DepricatedPropertyError_specific, "Migration issue: The property %s is no longer supported.  %s." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DepricatedFunctionError, "Unsupported ActionScript 2.0 function." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DepricatedFunctionError_specific, "Migration issue: The method %s is no longer supported.  %s." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ChangesInResolve, "__resolve is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ChangesInResolve_specific, "Migration issue: __resolve is no longer supported.  Use the new Proxy class for similar functionality." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_LevelNotSupported, "_level is no longer supported. For more information, see the flash.display package." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_LevelNotSupported_specific, "Migration issue: _level is no longer supported. For more information, see the flash.display package." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ClassIsSealed, "Class is sealed.  It cannot have members added to it dynamically." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ClassIsSealed_specific, "Migration issue: %s is not a dynamic class.  Instances cannot have members added to them dynamically." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ScopingChangeInThis, "Change in scoping for the this keyword.  Class methods extracted from an instance of a class will always resolve this back to that instance.  In ActionScript 2.0 this is looked up dynamically based on where the method is invoked from." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ScopingChangeInThis_specific, "Migration issue: Method %s will behave differently in ActionScript 3.0 due to the change in scoping for the this keyword. See the entry for warning 1083 for additional information." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_MissingNamespaceDecl, "Missing namespace declaration (e.g. variable is not defined to be public, private, etc.)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_MissingNamespaceDecl_specific, "%s will be scoped to the default namespace: %s internal.  It will not be visible outside of this package." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ForVarInChanges, "ActionScript 3.0 iterates over an object's properties within a \"for x in target\" statement in random order." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ForVarInChanges_specific, "Migration issue: ActionScript 3.0 iterates over an object's properties within a \"for x in target\" statement in random order." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_InternalError, "Internal error in compiler." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_InternalError_specific, "Error code: %s." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DepricatedEventHandlerError, "EventHandler was not added as a listener." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DepricatedEventHandlerError_specific, "Migration issue: %s" );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NegativeUintLiteral, "Negative value will become a large positive value when assigned to a uint data type." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NegativeUintLiteral_specific, "Negative value used where a uint (non-negative) value is expected." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadNullComparision, "Illogical comparison with null." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadNullComparision_specific, "Illogical comparison with null.  Variables of type %s cannot be null." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadNaNComparision, "Illogical comparison with NaN. Any comparison operation involving NaN will evaluate to false because NaN != NaN." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadNaNComparision_specific, "Illogical comparison with NaN.  This statement always evaluates to false." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_AssignmentWithinConditional, "Assignment within conditional." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_AssignmentWithinConditional_specific, "Assignment within conditional.  Did you mean == instead of =?" );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadNullAssignment, "Impossible null assignment." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadNullAssignment_specific, "null used where a %s value was expected." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NoConstructor, "Missing constructor." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NoConstructor_specific, "No constructor function was specified for class %s." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_UnexpectedEmptyStatement, "Empty statement." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_UnexpectedEmptyStatement_specific, "Empty statement found where block of code expected. Did you type ';' accidentally?" );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ConstNotInitialized, "Constant not initialized." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ConstNotInitialized_specific, "The constant was not initialized." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadArrayCast, "Possibly invalid Array cast operation." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadArrayCast_specific, "Array(x) behaves the same as new Array(x).  To cast a value to type Array use the expression x as Array instead of Array(x)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NoExplicitSuperCallInConstructor, "The super() statement was not called within the constructor." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_NoExplicitSuperCallInConstructor_specific, "The super() statement will be executed prior to entering this constructor.  Add a call to super() within the constructor if you want to explicitly control when it is executed." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_version, "Use Capabilities.version instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Focusrect, "For more information, see InteractiveObject.focusRect." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Highquality, "For more information, see Stage.quality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObj_HighQuality, "For more information, see Stage.quality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObj_Quality, "For more information, see Stage.quality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Quality, "For more information, see Stage.quality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_Soundbuftime, "Use the static property flash.media.SoundMixer.bufferTime instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_Target, "This functionality is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_Url, "For more information, see LoaderInfo.url." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_Variable, "This functionality is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_NewLine, "Use '\n' for newline." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MaxScroll, "For more information, see textField.maxScroll." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Level, "The concept of levels does not exist in ActionScript 3.0, which instead provides direct access to the display list. See the flash.display package for details." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Parent, "Use the parent property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Root, "This property has been removed. The closest equivalent is the Stage, which serves as the root of the ActionScript 3.0 display list." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Arguments_Caller, "Try declaring caller as an argument of the function instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Button_Target, "This functionality is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip_Parent, "Use the parent property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip_target, "This functionality is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip_hitArea, "For more information, see Sprite.hitArea." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Scroll, "For more information, see the scrollH and scrollV properties of flash.text.TextField class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TargetPath, "Use MovieClip objects directly as arguments instead of paths." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Video_Height, "For more information, see Video.videoHeight." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Video_Width, "For more information, see Video.videoWidth." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp__Proto__, "For more information, see obsolete  __proto__." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Stage, "For more information, see DisplayObject.stage." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp__remoteClass, "Use the registerClass() method in the flash.net package instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_random, "Use Math.random() instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_chr, "Use String.fromCharCode() instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_mbchr, "Use String.fromCharCode() instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ord, "Use String.charCodeAt() instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_mbord, "Use String.charCodeAt() instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_substring, "Use the String.substr method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_mbsubstring, "Use the String.substr method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_length, "Use the length property of the argument instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_mblength, "Use the length property of the argument instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ASNative, "For more information, see changes to ASnative." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_addProperty, "Set properties directly on the instance using dot (.) notation instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_getProperty, "Access properties directly using dot (.) notation instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_setProperty, "Set properties directly on the instance using dot (.) notation instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_asfunction, "For more information, see TextEvent.LINK and addEventListener()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_clearInterval, "This method has moved to the flash.utils package." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_duplicateMovieClip, "Replaced by new MovieClip class constructor function." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_fscommand, "Moved to flash.system package. Also, please see flash.external.ExternalInterface class for Javascript/ActionScript communication." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_getURL, "For equivalent functionality, see flash.net.URLLoader.  The flash.net package also contains package-level functions navigateToURL() and sendToURL()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_gotoAndPlay, "For more information, see MovieClip.gotoAndPlay()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_gotoAndStop, "For more information, see MovieClip.gotoAndStop()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_play, "For more information, see MovieClip.play()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_print, "For more information, see PrintJob.start()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_printAsBitmap, "For more information, see PrintJob." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_printAsBitmapNum, "For more information, see PrintJob." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_printNum, "For more information, see PrintJob." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_removeMovieClip, "Use Container.removeChild(childName). For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_setInterval, "Moved to the flash.utils package.  Consider using the Timer class instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_nextFrame, "For more information, see MovieClip.nextFrame()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_startDrag, "For more information, see MovieClip.startDrag()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_stop, "For more information, see MovieClip.stop()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_stopAllSounds, "For more information, see Sound.stopAllSounds()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_stopDrag, "For more information, see MovieClip.stopDrag()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_tellTarget, "Use the dot (.) operator or the with statement instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_toggleHighQuality, "For more information, see DisplayObject.stage and Stage.quality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_unloadMovie, "Use DisplayObjectContainer.removeChild(childName) instead. For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_unloadMovieNum, "Use DisplayObjectContainer.removeChild(childName) instead. For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_updateAfterEvent, "This function is no longer a global function, but is still available as a method of the TimerEvent, MouseEvent, and KeyboardEvent classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Video_attachVideo, "For more information, see Video.attachNetStream, Video.attachCamera." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_StyleSheet_load, "Use the URLLoader class to perform loading and pass the result to StyleSheet.parseCSS()" );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Object_registerClass, "In ActionScript 3.0 all classes are registered by default.  If you are using AMF, see flash.utils.registerClassAlias() for more information." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Object_unwatch, "Use accessor properties (get/set functions) or the flash.utils.Proxy class for similar functionality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Object_watch, "Use accessor properties (get/set functions) or the flash.utils.Proxy class for similar functionality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_loadMovie, "For more information, see MovieClip.loadMovie()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_loadMovieNum, "For more information, see MovieClip.loadMovieNum()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_loadVariables, "For more information, see Loader.load()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_loadVariablesNum, "For more information, see Loader.load()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Stage_addListener, "For more information, see addEventListener ( eventName, listener, useCapture, priority )." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Stage_removeListener, "For more information, see removeEventListener ( eventName, listener, useCapture)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_addListener, "For more information, see addEventListener ( eventName, listener, useCapture, priority )." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_removeListener, "For more information, see removeEventListener ( eventName, listener, useCapture)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Mouse_addListener, "For more information, see addEventListener ( eventName, listener, useCapture, priority )." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Mouse_removeListener, "For more information, see removeEventListener ( eventName, listener, useCapture)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Keyboard_addListener, "For more information, see addEventListener ( eventName, listener, useCapture, priority )." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Keyboard_removeListener, "For more information, see removeEventListener ( eventName, listener, useCapture)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_attachSound, "Use SWF class to create sounds from library" );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onStatus, "The onStatus event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'status', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onID3, "The onID3 event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'id3', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onLoad, "The onLoad event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'load', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onSoundComplete, "The onSoundComplete event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'soundComplete', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onSetFocus, "The onSetFocus event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'focusIn', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onResize, "The onResize event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'resize', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onChanged, "The onChanged event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'change', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onKillFocus, "The onKillFocus event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'focusOut', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onScroller, "The onScroller event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'scroll', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onMouseDown, "The onMouseDown event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseDown', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onMouseUp, "The onMouseUp event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseUp', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onMouseMove, "The onMouseMove event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseMove', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onMouseWheel, "The onMouseWheel event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseWheel', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onKeyDown, "The onKeyDown event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'keyDown', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onKeyUp, "The onKeyUp event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'keyUp', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onData, "The onData event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'data', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onHTTPStatus, "The onHTTPStatus event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'httpStatus', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onDragOut, "The onDragOut event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseOut', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onDragOver, "The onDragOver event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseOver', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onPress, "The onPress event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseDown', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onRelease, "The onRelease event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'click', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onReleaseOutside, "The onReleaseOutside event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseUp', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onRollOut, "The onRollOut event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseOut', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onRollOver, "The onRollOver event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseOver', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onActivity, "The onActivity event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'activity', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onSelect, "The onSelect event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'menuSelect', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onEnterFrame, "The onEnterFrame is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'enterFrame', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onUnload, "The onUnload event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'unload', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onLoadComplete, "The onLoadComplete is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'load', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onLoadError, "The onLoadError event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'error', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onLoadInit, "The onLoadInit event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'init', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onLoadProgress, "The onLoadProgress event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'progress', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onLoadStart, "The onLoadStart is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'start', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onClose, "The onClose event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'close', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onConnect, "The onConnect event handler is not triggered automatically by Flash player in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'connect', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onXML, "onXML is not triggered automatically by Flash Player in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'xml', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_hasChildNodes, "Use the property hasChildNodes instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLEvent, "The XMLEvent class is obsolete, and the xml event is no longer dispatched. Only the data event is dispatched during file loading." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDoc, "The XMLDoc class has been renamed XMLDocument." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Accessibility_isActive, "Use the Accessibility.active property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ActivityEvent_ACTIVITY_TYPE, "Use ActivityEvent.ACTIVITY constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SimpleButton_getDepth, "Use DisplayObjectContainer.parent.getChildIndex instead. See help for the DisplayObjectContainer class, which is extended by MovieClip." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SimpleButton_swapDepths, "Use DisplayObjectContainer.parent.setChildIndex instead. See help for the DisplayObjectContainer class, which is extended by MovieClip." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SimpleButton_getInstanceAtDepth, "Use DisplayObjectContainer.getChildAt instead. See help for the DisplayObjectContainer class, which is extended by MovieClip." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SimpleButton_getNextHighestDepth, "Use DisplayObjectContainer.numChildren instead. DisplayObjectContainer.addChild always adds the new child to index DisplayObjectContainer.numChildren." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ByteArray_available, "Use the ByteArray.bytesAvailable property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ByteArray_getFilePointer, "Use the ByteArray.position property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ByteArray_seek, "Use the ByteArray.position property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Camera_get, "Use the Camera.getCamera() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Camera_currentFps, "Use the Camera.currentFPS property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Camera_setKeyFrameInterval, "Use the Camera.keyFrameInterval property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Camera_setLoopback, "Use the Camera.loopback property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ColorTransform_getRGB, "Use the ColorTransform.color property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ColorTransform_setRGB, "Use the ColorTransform.color property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_DisplayObjectContainer_getTextSnapshot, "Use the Container.textSnapshot property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ContextMenu_copy, "Use the ContextMenu.clone() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ContextMenu_forward_back, "Use the ContextMenu.forwardAndBack property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ContextMenuItem_copy, "Use the ContextMenuItem.clone() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_CustomActions_listActions, "Use the CustomActions.actionsList property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DataEvent_DATA_TYPE, "Use the DataEvent.DATA constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject_xscale, "Use the DisplayObject.scaleX property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__xscale, "Use the DisplayObject.scaleX property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject_yscale, "Use the DisplayObject.scaleY property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__yscale, "Use the DisplayObject.scaleY property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject_xmouse, "Use the DisplayObject.mouseX property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__xmouse, "Use the DisplayObject.mouseX property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject_ymouse, "Use the DisplayObject.mouseY property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__ymouse, "Use the DisplayObject.mouseY property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject_setRootClass, "This feature is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject_mapSymbolToClass, "This feature is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__name, "Use the DisplayObject.name property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__parent, "Use the DisplayObject.parent property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__mask, "Use the DisplayObject.mask property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__visible, "Use the DisplayObject.visible property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__x, "Use the DisplayObject.x property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__y, "Use the DisplayObject.y property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__rotation, "Use the DisplayObject.rotation property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__alpha, "Use the DisplayObject.alpha property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__width, "Use the DisplayObject.width property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject__height, "Use the DisplayObject.height property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ExternalInterface_available, "Use the ExternalInterface.available property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ErrorEvent_ERROR_TYPE, "Use the ErrorEvent.ERROR constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Event_isDefaultPrevented, "Use the Event.isDefaultPrevented property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_ACTIVATE_TYPE, "Use the Event.ACTIVATE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_ADDED_TYPE, "Use the Event.ADDED constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_CANCEL_TYPE, "Use the Event.CANCEL constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_CHANGE_TYPE, "Use the Event.CHANGE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_CLOSE_TYPE, "Use the Event.CLOSE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_COMPLETE_TYPE, "Use the Event.COMPLETE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_CONNECT_TYPE, "Use the Event.CONNECT constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_DEACTIVATE_TYPE, "Use the Event.DEACTIVATE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_ENTER_FRAME_TYPE, "Use the Event.ENTER_FRAME constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_ID3_TYPE, "Use the Event.ID3 constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_INIT_TYPE, "Use the Event.INIT constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_MOUSE_LEAVE_TYPE, "Use the Event.MOUSE_LEAVE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_OPEN_TYPE, "Use the Event.OPEN constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_REMOVED_TYPE, "Use the Event.REMOVED constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_RENDER_TYPE, "Use the Event.RENDER constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_RESIZE_TYPE, "Use the Event.RESIZE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_SCROLL_TYPE, "Use the Event.SCROLL constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_SELECT_TYPE, "Use the Event.SELECT constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_SOUND_COMPLETE_TYPE, "Use the Event.SOUND_COMPLETE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_TAB_CHILDREN_CHANGE_TYPE, "Use the Event.TAB_CHILDREN_CHANGE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_TAB_ENABLED_CHANGE_TYPE, "Use the Event.TAB_ENABLED_CHANGE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_TAB_INDEX_CHANGE_TYPE, "Use the Event.TAB_INDEX_CHANGE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Event_UNLOAD_TYPE, "Use the Event.UNLOAD constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_FocusEvent_FOCUS_IN_TYPE, "Use the FocusEvent.FOCUS_IN constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_FocusEvent_FOCUS_OUT_TYPE, "Use the FocusEvent.FOCUS_OUT constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_FocusEvent_KEY_FOCUS_CHANGE_TYPE, "Use the FocusEvent.KEY_FOCUS_CHANGE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_FocusEvent_MOUSE_FOCUS_CHANGE_TYPE, "Use the FocusEvent.MOUSE_FOCUS_CHANGE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Graphics_beginImageFill, "Use the Graphics.beginBitmapFill() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_BitmapFilter_XYZ_QUALITY, "Use the BitmapFilter.quality property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Keyboard_getAscii, "Use KeyboardEvent.charCode instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Keyboard_getCode, "Use KeyboardEvent.keyCode instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Keyboard_isDown, "For more information, see the KeyboardEvent class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Keyboard_isToggled, "For more information, see KeyboardEvent.ctrlKey, KeyboardEvent.altKey, and KeyboardEvent.shiftKey." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Keyboard_PGDN, "Use the PAGE_DOWN constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Keyboard_PGUP, "Use the PAGE_UP constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Keyboard_DELETEKEY, "Use the DELETE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Keyboard_CAPSLOCK, "Use the CAPS_LOCK constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Keyboard_NUMPAD, "Use one of the NUMPAD_0 -> NUMPAD_9 constants instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_InteractiveObject__focusrect, "Use the InteractiveObject.focusRect property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_InteractiveObject_menu, "Use the InteractiveObject.contextMenu property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_KeyboardEvent_ascii, "Use the KeyboardEvent.charCode property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_KeyboardEvent_code, "Use the KeyboardEvent.keyCode property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Loader_loaderInfo, "Use the Loader.contentLoaderInfo property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Loader_preload, "This feature is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Loader_loadCached, "This feature is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_LoaderInfo_loaderUrl, "Use the LoaderInfo.loaderURL property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_LocalConnection_domain, "Use the LocalConnection.domain property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ContextMenuEvent_menuOwner, "Use the MenuEvent.contextMenuOwner property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Microphone_get, "Use the Microphone.getMicrophone() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_attachMovie, "If the MovieClip subclass name is A use var mc= new A(); addChild(mc). For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_createEmptyMovieClip, "Use var mc= new MovieClip(); addChild(mc). For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_createTextField, "Use var tf= new TextField(); addChild(mc). For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_removeMovieClip, "Use Container.removeChild(childName). For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_loadMovie, "Use var l = new Loader(); addChild(l); l.load(new URLRequest(\"your url\"));. For more information, see the Loader and DisplayObjectContainer classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_unloadMovie, "Use DisplayObjectContainer.removeChild(childName) instead. For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_unloadMovieNum, "Use DisplayObjectContainer.removeChild(childName) instead. For more information, see the DisplayObjectContainer class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_getDepth, "Use DisplayObjectContainer.parent.getChildIndex instead. For more information, see the DisplayObjectContainer class, is extended by MovieClip." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_swapDepths, "Use DisplayObjectContainer.parent.setChildIndex instead. For more information, see the DisplayObjectContainer class, which is extended by MovieClip." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_getInstanceAtDepth, "Use DisplayObjectContainer.getChildAt instead. For more information, see the DisplayObjectContainer class, which is extended by MovieClip." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_getNextHighestDepth, "Use DisplayObjectContainer.numChildren instead. DisplayObjectContainer.addChild always adds the new child to index DisplayObjectContainer.numChildren." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_attachAudio, "For more information, see DisplayObject.addChild." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_getBytesLoaded, "For more information, see LoaderInfo.bytesLoaded and the Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_getBytesTotal, "For more information, see LoaderInfo.bytesTotal and the Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_getURL, "For equivalent functionality, see flash.net.URLLoader.  The flash.net package also contains package-level functions navigateToURL() and sendToURL()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip_url, "For more information, see LoaderInfo.url and the Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip__url, "For more information, see LoaderInfo.url and the Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_setMask, "Use the MovieClip.mask property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_getSWFVersion, "For more information, see LoaderInfo.swfVersion and the Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip__currentframe, "Use the MovieClip.currentFrame property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip__framesloaded, "Use the MovieClip.framesLoaded property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip__totalframes, "Use the MovieClip.totalFrames property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip_lockroot, "For more information, see displayObjectInstance.root." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip__lockroot, "For more information, see displayObjectInstance.root." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip__soundbuftime, "Use the static propery flash.media.SoundMixer.bufferTime instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_clear, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_beginFill, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_beginGradientFill, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_lineGradientStyle, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_beginImageFill, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_lineStyle, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_drawRect, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_drawRoundRect, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_drawRoundRectComplex, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_drawCircle, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_moveTo, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_lineTo, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_curveTo, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_endFill, "For more information, see the Graphics class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_NetStream_setBufferTime, "Use the NetStream.bufferTime property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_NetStream_currentFps, "Use the NetStream.currentFPS property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_NetStream_videocodec, "Use the NetStream.videoCodec property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_NetStream_audiocodec, "Use the NetStream.audioCodec property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ProductManager_isIntalled, "Use the ProductManager.isInstalled property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ProductManager_installedVersion, "Use the ProductManager.installedVersion property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ProductManager_isRunning, "Use the ProductManager.isRunning property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Point_addTo, "Use the Point.add() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Proxy_delDescendants, "Use the Proxy.deleteDescendants property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Profiler_heapdump, "Use the heapDump() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ProgressEvent_current, "Use the ProgressEvent.bytesLoaded property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ProgressEvent_total, "Use the ProgressEvent.bytesTotal property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Rectangle_isEmpty, "Use the Rectangle.isEmpty property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SoundTransform_setPan, "Use the SoundTransform.pan property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Socket_available, "Use the Sockect.bytesAvailable property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SharedObject_getSize, "Use the SharedObject.size property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SharedObject_setFps, "Use the SharedObject.fps property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sprite_getSWF, "This is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sprite_constructChild, "Use the Sprite.constructChildren() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Sprite__droptarget, "Use the Sprite.dropTarget property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Stage_getFocus, "Use the Stage.focus property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Stage_setFocus, "Use the Stage.focus property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Stage_showMenu, "Use the Stage.showDefaultContextMenu property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_StyleSheet_getStyleNames, "Use the StyleSheet.styleNames property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_StyleSheet_onData, "Use an instance of URLLoader to load the StyleSheet data, and then pass the loaders data to the StyleSheet.parseCSS method. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_StyleSheet_load, "Use an instance of URLLoader to load the StyleSheet data, and then pass the loaders data to the StyleSheet.parseCSS method. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_StyleSheet_loaded, "Use an instance of URLLoader to load the StyleSheet data, and then pass the loaders data to the StyleSheet.parseCSS method. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_StyleSheet_getBytesLoaded, "Use an instance of URLLoader to load the StyleSheet data, and then pass the loaders data to the StyleSheet.parseCSS method. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_StyleSheet_getBytesTotal, "Use an instance of URLLoader to load the StyleSheet data, and then pass the loaders data to the StyleSheet.parseCSS method. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_IME_getEnabled, "Use the IME.enabled property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_IME_setEnabled, "Use the IME.enabled property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_IME_getInstance, "Use the IME.instance property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_IME_getConversionMode, "Use the IME.conversionMode property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_IME_setConversionMode, "Use the IME.conversionMode property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_System_getAvmplusVersion, "Use the System.vmVersion property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_SWFLoaderInfo_SWFVersion, "Use the SWFLoaderInfo.swfVersion property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_SWFLoaderInfo_ASVersion, "Use the SWFLoaderInfo.actionScriptVersion property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getNewTextFormat, "Use the TextField.defaultTextFormat property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_setNewTextFormat, "Use the TextField.defaultTextFormat property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getDepth, "Use DisplayObjectContainer.parent.getChildIndex instead. For more information, see the DisplayObjectContainer class, which MovieClip extends." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_swapDepths, "Use DisplayObjectContainer.parent.setChildIndex instead. For more information, see the DisplayObjectContainer class, which MovieClip extends." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getInstanceAtDepth, "Use DisplayObjectContainer.getChildAt instead. For more information, see the DisplayObjectContainer class, which MovieClip extends." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getNextHighestDepth, "Use DisplayObjectContainer.numChildren instead.  DisplayObjectContainer.addChild always adds the new child to index DisplayObjectContainer.numChildren." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_replaceSel, "Use the TextField.replaceSelectedText() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getLineIndexOfCharacter, "Use the TextField.getLineIndexOfChar() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getSelectionBeginIndex, "Use the TextField.selectionBeginIndex property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getSelectionEndIndex, "Use the TextField.selectionEndIndex property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getCaretIndex, "Use the TextField.caretIndex property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextField_getFontList, "Use the Font.enumerateFonts() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_maxscroll, "Use the TextField.maxScrollV property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_hscroll, "Use the TextField.scrollH property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_maxhscroll, "Use the TextField.maxScrollH property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_newTextFormat, "Use the TextField.defaultTextFormat property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextFormat_getTextExtent, "Create a temporary TextField and use TextField.getLineMetrics instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextSnapshot_getCount, "Use the TextSnapshot.charCount property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_URLLoader_navigate, "Use the navigateToURL() method in the flash.net package instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_URLLoader_send, "Use the sendToURL() method in the flash.net package instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_URLLoader_binary, "Use the URLLoader.dataFormat property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_URLStream_available, "Use the URLStream.bytesAvailable property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_URLRequest_digest, "This property is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_URLRequest_importToSandbox, "Use the URLRequest.applicationDomain property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_URLRequest_addRequestHeader, "To add request headers, set the URLRequest.requestHeaders property to an array of URLRequestHeader objects." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDocument_load, "Use an instance of URLLoader to load the XML file, then pass the URLLoaders data to the XMLDocuments constructor. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDocument_send, "Use the sendToURL() method in the flash.net package instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDocument_sendAndLoad, "Set a URLRequest object postData property and use it with a URLLoader object to load the XML file.  Pass the URLLoaders data to the XMLDocuments constructor. For more information, see the URLLoader, URLRequest and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDocument_onData, "Use an instance of URLLoader to load the XML file, then pass the URLLoaders data to the XMLDocuments constructor. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDocument_addRequestHeader, "To add request headers, set the URLRequest.requestHeaders property to an array of URLRequestHeader objects." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDocument_getBytesLoaded, "For more information, see URLLoader.bytesLoaded and the URLLoader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLDocument_getBytesTotal, "For more information, see URLLoader.bytesTotal and the URLLoader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_XMLDocument_loaded, "Use an instance of URLLoader to load the XML file, then pass the loaders data to the StyleSheet.parseCSS method. For more information, see the URLLoader and EventDispatcher classes." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_XMLDocument_contentType, "Use the URLRequest.contentType property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_XMLDocument_status, "Check for the possible exceptions thrown by the XMLDocument constructor or the XMLDocument.parseXML method instead. For more information, see XMLDocument." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Button, "The Button class has been renamed SimpleButton." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Container, "The Container class has been renamed DisplayObjectContainer." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Image, "The Image class has been renamed BitmapData." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ImageFilter, "The ImageFilter class has been renamed BitmapFilter." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ImageSprite, "The ImageSprite class has been renamed Bitmap." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ImageLoaderInfo, "The ImageLoaderInfo class has been renamed BitmapLoaderInfo." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_ImeEvent, "The ImeEvent class has been renamed IMEEvent." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Key, "The Key class has been renamed Keyboard." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_LineMetrics, "The LineMetrics class has been renamed TextLineMetrics." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_LoadVars, "For more information, see the URLVariables class, the URLRequest.urlVariables and URLRequest.postData properties, and the URLLoader.dataFormat property." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MenuEvent, "The MenuEvent class has been renamed ContextMenuEvent." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_SystemCapabilities, "The SystemCapabilities class has been renamed Capabilities." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextExtents, "Use the TextField.getLineMetrics property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Button, "The Button class has been renamed SimpleButton." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Container, "The Container class has been renamed DisplayObjectContainer." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Image, "The Image class has been renamed BitmapData." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ImageFilter, "The ImageFilter class has been renamed BitmapFilter." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ImageSprite, "The ImageSprite class has been renamed Bitmap." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ImageLoaderInfo, "The ImageLoaderInfo class has been renamed BitmapLoaderInfo." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ImeEvent, "The ImeEvent class has been renamed IMEEvent." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Key, "The Key class has been renamed Keyboard." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_LineMetrics, "The LineMetrics class has been renamed TextLineMetrics." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_LoadVars, "For more information, see the URLVariables class, the URLRequest.urlVariables and URLRequest.postData properties, and the URLLoader.dataFormat property." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MenuEvent, "The MenuEvent class has been renamed ContextMenuEvent." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_SystemCapabilities, "The SystemCapabilities class has been renamed Capabilities." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_TextExtents, "Use the TextField.getLineMetrics property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Object___resolve , "For more information, see help for the Proxy class, which offers similar functionality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLUI_get, "Use the XMLUI.getProperty method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_XMLUI_set, "Use the XMLUI.setProperty method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_DisplayObject_accProps, "Use the DisplayObject.accessibilityProperties property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_DisplayObject_setScalingGrid, "Use the DisplayObject.scale9Grid property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Graphics_drawCircle, "Use the Graphics.drawOval method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_NetConnection_isConnected, "Use the NetConnection.connected property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Socket_isConnected, "Use the Socket.connected property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_URLStream_isConnected, "Use the URLStream.connected property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_SyncEvent_list, "Use the SyncEvent.changeList property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_scroll, "Use the TextField.scrollV property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_TextField_bottomScroll, "Use the TextField.bottomScrollV property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_BitmapData_RED_CHANNEL, "Use the BitmapDataChannel.RED constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_BitmapData_GREEN_CHANNEL, "Use the BitmapDataChannel.GREEN constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_BitmapData_BLUE_CHANNEL, "Use the BitmapDataChannel.BLUE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_BitmapData_ALPHA_CHANNEL, "Use the BitmapDataChannel.ALPHA constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_instanceof, "Use the is operator instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_System_showSettings, "Use the flash.system.Security.showSettings method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_System_useCodepage, "Use the System.useCodePage property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_AsBroadcaster, "Use the flash.events.EventDispatcher class instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_SimpleButton_Soundbuftime, "Use the static propery flash.media.SoundMixer.bufferTime instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_BitmapData_loadBitmap, "Create a new instance of the bitmap library symbol class, i.e. new myBitmapName(), instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_loadVariables, "For more information, see Loader.load()." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClipLoader, "The MovieClipLoader class has been replaced by the flash.display.Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClipLoader, "The MovieClipLoader class has been replaced by the flash.display.Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_IME_addListener, "For more information, see addEventListener(eventName, listener, useCapture, priority )." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_IME_removeListener, "For more information, see removeEventListener(eventName, listener, useCapture)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_ALPHANUMERIC_FULL, "Use the flash.system.IMEConversionMode.ALPHANUMERIC_FULL constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_ALPHANUMERIC_HALF, "Use the flash.system.IMEConversionMode.ALPHANUMERIC_HALF constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_CHINESE, "Use the flash.system.IMEConversionMode.CHINESE constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_JAPANESE_HIRAGANA, "Use the flash.system.IMEConversionMode.JAPANESE_HIRAGANA constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_JAPANESE_KATAKANA_FULL, "Use the flash.system.IMEConversionMode.JAPANESE_KATAKANA_FULL constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_JAPANESE_KATAKANA_HALF, "Use the flash.system.IMEConversionMode.JAPANESE_KATAKANA_HALF constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_KOREAN, "Use the flash.system.IMEConversionMode.KOREAN constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_IME_UNKNOWN, "Use the flash.system.IMEConversionMode.UNKNOWN constant instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_FileReferenceList_addListener, "For more information, see addEventListener ( eventName, listener, useCapture, priority )." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_FileReferenceList_removeListener, "For more information, see removeEventListener ( eventName, listener, useCapture)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onCancel, "The onCancel event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( cancel, onCancel)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Keyboard__listeners, "There is no direct replacement. The willTrigger() method can be used to tell if any listeners have been registered." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onIMEComposition, "The onIMEComposition event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( imeComposition, handlerName)." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_SimpleButton__url, "For more information, see LoaderInfo.url and the Loader class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Date_getYear, "Use the getFullYear() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Date_setYear, "Use the setFullYear() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Date_getUTCYear, "Use the getUTCFullYear() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Microphone_setRate, "Use the rate property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Selection, "The Selection class has been removed. For more information, see the addEventListener method of the class you want selection information from." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Selection, "The Selection class has been removed. For more information, see the addEventListener method of the class you want selection information from." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Microphone_setGain, "Use the gain property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ColorTransform_getTransform, "Color values can be assigned directly using the ColorTransform class constructor or properties." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ColorTransform_setTransform, "Color values can be assigned directly using the ColorTransform class constructor or properties." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_MovieClip_focusEnabled, "See help for the focus related properties of the flash.display.InteractiveObject class." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_beginBitmapFill, "See help for the flash.display.Graphics.beginBitmapFill method." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_hitTest, "See help for the flash.display.DisplayObject.hitTestObject() method." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_MovieClip_attachBitmap, "See help for the addChild() method." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_loadSound, "Use the load() method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_getVolume, "Use flash.media.SoundChannel.leftPeak and flash.media.SoundChannel.rightPeak to monitor and control the amplitude of a sound channel." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_getTransform, "Use the soundTransform property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_getPan, "Use the SoundTransform.pan property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_setPan, "Use the SoundTransform.pan property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_getBytesLoaded, "Use the bytesLoaded property instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Sound_getBytesTotal, "Use the bytesTotal property instead." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_SlowTextFieldAddition, "Inefficient use of += on a TextField." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_SlowTextFieldAddition_specific, "Appending text to a TextField using += is many times slower than using the TextField.appendText() method." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_UnlikelyFunctionValue, "Possible missing parentheses." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_UnlikelyFunctionValue_specific, "Function value used where type %s was expected.  Possibly the parentheses () are missing after this function reference." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_InstanceOfChanges, "Use of the instanceof operator." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_InstanceOfChanges_specific, "The instanceof operator is deprecated, use the is operator instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_LocalConnection_allowDomain, "The allowDomain() event handler is now a standard method, rather than an event callback. For more information, see the new LocalConnection.allowDomain method." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_LocalConnection_allowInsecureDomain, "The allowInsecureDomain() event handler is now a standard method, rather than an event callback. For more information, see the new LocalConnection.allowInsecureDomain method." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_call, "The global call() method is no longer supported." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_Color, "The Color class has been removed. Use the flash.geom.ColorTransform class for equivalent functionality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Color, "The Color class has been removed. Use the flash.geom.ColorTransform class for equivalent functionality." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_System_exactSettings, "ActionScript 3.0 SWF files always use exact domain matching rules." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp_capabilities, "The capabilities class has been renamed Capabilities." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_capabilities, "The capabilities class has been renamed Capabilities." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_FileReference_addListener, "For more information, see addEventListener(eventName, listener, useCapture, priority )." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_FileReference_removeListener, "For more information, see removeEventListener(eventName, listener, useCapture)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onComplete, "The onComplete event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ('complete', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onHTTPError, "The onHTTPError event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ('httpError', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onIOError, "The onIOError event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ('ioError', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onProgress, "The onProgress event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ('progress', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onSecurityError, "The onSecurityError event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ('securityError', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_Event_onOpen, "The onOpen event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ('open', callback_handler)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_XML_ClassHasChanged, "Possible usage of the ActionScript 2.0 XML class." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_XML_ClassHasChanged_specific, "Migration issue: The ActionScript 2.0 XML class has been renamed XMLDocument." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadDateCast, "Invalid Date cast operation." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadDateCast_specific, "Date(x) behaves the same as new Date().toString(). To cast a value to type Date use \"x as Date\" instead of Date(x)." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ImportHidesClass, "Importing a package by the same name as the current class will hide that class identifier in this scope." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_ImportHidesClass_specific, "Importing a package by the same name as the current class will hide that class identifier in this scope." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DuplicateArgumentNames, "More than one argument has the same name." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DuplicateArgumentNames_specific, "More than one argument named '%s' specified.  References to that argument will always resolve to the last one." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_Rectangle_containsRectangle, "Use the Rectangle.containsRect method instead." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_eval, "This functionality has been removed." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_getVersion, "This functionality has been replaced by the flash.system.Capabilities.version property." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedMeth_ifFrameLoaded, "This functionality has been replaced by the flash.display.MovieClip.framesLoaded property." );
-        warningConstantsEN[index++] = new AscWarning(kUnsupportedProp__global, "The _global property has been removed.  For equivalent functionality, use a static member of a class." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadBoolAssignment, "Non-Boolean value used where a Boolean value was expected." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadBoolAssignment_specific, "%s used where a Boolean value was expected.  The expression will be type coerced to Boolean." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadES3TypeProp, "Unknown property." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadES3TypeProp_specific, "%s is not a recognized property of the dynamic class %s." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadES3TypeMethod, "Unknown method." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_BadES3TypeMethodProp_specific, "%s is not a recognized method of the dynamic class %s." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DuplicateVariableDef, "Duplicate variable definition." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DuplicateVariableDef_specific, "Duplicate variable definition." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DefinitionShadowedByPackageName, "Definition name is the same as an imported package name.  Unqualified references to that name will resolve to the package and not the definition." );
-        warningConstantsEN[index++] = new AscWarning(kWarning_DefinitionShadowedByPackageName_specific, "Definition name is the same as an imported package name.  Unqualified references to that

<TRUNCATED>

[2/2] git commit: [flex-falcon] [refs/heads/develop] - try to fix build

Posted by ah...@apache.org.
try to fix build


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/391a051e
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/391a051e
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/391a051e

Branch: refs/heads/develop
Commit: 391a051e8401c2bba94773e2ebe6dab898ee794c
Parents: 02ff887
Author: Alex Harui <ah...@apache.org>
Authored: Sun Apr 6 07:26:56 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Apr 6 07:26:56 2014 -0700

----------------------------------------------------------------------
 .../asc/embedding/WarningConstants.java         | 10561 -----------------
 1 file changed, 10561 deletions(-)
----------------------------------------------------------------------