You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2020/06/12 05:43:28 UTC

[GitHub] [royale-asjs] liju1985 opened a new issue #861: Migration of Adobe Flex to Apache Royale - Support needed

liju1985 opened a new issue #861:
URL: https://github.com/apache/royale-asjs/issues/861


    Hi Team,
   
   I'm from Development Team for FedEx, we have an application built on Adobe Flex, since Flex is not longer supported after Dec 2020, we need to migrate the application to Apache Royale asap.
   
   We followed the instruction mentioned in the Migration of Existing app however, we are facing some issue:
   
   Attached is the build.log also I have attached the MXML file
   
   Can you please provide you support.
   
   Regards,
   
   Liju


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-644784051


   This helped a lot. Can you help on Substitute of SortField in ArrayList
   Below is the code which is available. I changed ArrayCollection to ArrayList. But im not able to assign the Sort Object to a arrayList
   `private function sortAccountListBy(accountList:ArrayCollection, sortBy:String):void {
   			if(accountList.length <= 1)
   				return;
   			
   			var sort:Sort = new Sort();				
   			sort.fields = [new SortField("label"+sortBy,true)];
   			accountList.sort = sort;
   			accountList.refresh();
   		}`
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-645160154


   @aharui  In flex it was **import mx.collections.ArrayCollection;** Royale SDK (D:\Software\apache-royale-0.9.7-bin-js-swf\royale-asjs) Intelligence says **Definition mx.collections.ArrayCollection could not be found.** 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643239887


   Yes Im using VS Code. I just installed AS3 pluggin.
   
   mx.binding.utils.BindingUtils is still failing with a warning. import mx.external.ExternalInterface I did import, previous error is gone, but i can see ExternalInterface is failing following is my compilation output.
   `  
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] Harbs commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
Harbs commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643726563


   For proper code intelligence, you need an `asconfig.json` file at the base of your project:
   https://github.com/BowlerHatLLC/vscode-as3mxml/wiki/asconfig.json


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643715824


   Hi @Harbs @aharui Please help.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-644784051


   This helped a lot @Harbs @aharui  Can you help on Substitute of SortField in ArrayList
   Below is the code which is available. I changed ArrayCollection to ArrayList. But im not able to assign the Sort Object to a arrayList
   `private function sortAccountListBy(accountList:ArrayCollection, sortBy:String):void {
   			if(accountList.length <= 1)
   				return;
   			
   			var sort:Sort = new Sort();				
   			sort.fields = [new SortField("label"+sortBy,true)];
   			accountList.sort = sort;
   			accountList.refresh();
   		}`
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] aharui commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-647926865


   Some refinement on Yishay's answers:
   1. You can use Object instead of Dictionary if the Dictionary is not a weak-reference Dictionary and the Objects toString() is unique.  Otherwise, explain the purpose of the Dictionary so we can help you decide on the best replacement.
   3. You may want to rewrite your Flex 3 states to be Flex 4 states.  I think AddChild was replaced by AddItems.
   4. mx:itemRenderer and mx:headerRenderer are probably ok and only mx:Component needs to be changed to be fx:Component.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643396685


   I have the extension added in VSCode, but it is not showing the syntax error. 
   
   Im having configname as flex, do we have to mentioned this in VS code?
   
   Some fixes I did, few errors are resolved. I'm getting Error: This attribute is unexpected. It will be ignored for some attributes of components, Is there any references for components? Intelligence is not showing it as Error. Latest build output
   
   `init:
      
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] 15.846897 seconds
   
   BUILD FAILED
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:51: The following error occurred while executing this line:
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:75: mxmlc task failed.
   
   Total time: 19 seconds
   `


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-644784051


   This helped a lot. Can you help on Substitute of SortField in ArrayList
   Below is the code which is available. I changed ArrayCollection to ArrayList. But im not able to assign the Sort Object to a arrayList
   private function sortAccountListBy(accountList:ArrayCollection, sortBy:String):void {
   			if(accountList.length <= 1)
   				return;
   			
   			var sort:Sort = new Sort();				
   			sort.fields = [new SortField("label"+sortBy,true)];
   			accountList.sort = sort;
   			accountList.refresh();
   		}


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] yishayw commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
yishayw commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-647326213


   Off the top of my head, try the following:
   
   1) Replace Dictionary with Object
   2) Replace DisplayObject with UIComponent or IUIComponent
   3) Listen to stateChange event and add or remove child accordingly
   4) Change mx:headerRenderer to fx:headerRenderer


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-647311272


   Hi @aharui @Harbs Corrected many errors. Thanks for your support. Can you help on following:
   
   1. import flash.utils.Dictionary; What should I use for this? Im storing my object in it
   
   private var viewHelpers : Dictionary;
   public function register( viewName : String, viewHelper : FedExViewHelper ) : void     
   {viewHelpers[ viewName ] = viewHelper;
   }
   
   2. import flash.display.DisplayObject; Replacement for this
   
   3. <mx:AddChild & <mx:RemoveChild
   
   4. <mx:headerRenderer> &  <mx:Component> in <mx:DataGridColumn


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643396685


   I have the extension added in VSCode, but it is not showing the syntax error. 
   
   Im having configname as flex, do we have to mentioned this in VS code?
   
   Some fixes I did, few errors are resolved. I'm getting Error: This attribute is unexpected. It will be ignored for some attributes of components, Is there any references for components? Intelligence is not showing it as Error. Latest build output
   
   `init:
       [mkdir] Created dir: D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\autoTestLibs\includes
        [echo] **** Using BuildTimeStamp=20061222 where as passed TMSTAMP=${TMSTAMP} and CurrentTMSTAMP=20061222
        [echo] BuildTimeStamp=20061222 StaticCheckTS=20061222
   
   buildproperties:
   
   serviceconfig.xml:
        [echo] *** Created all the serviceconfig.xml files ***
   
   createproperties:
   
   createsrcswfprod:
   
   createsrcswf:
        [echo] *** create D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/WGRTFreightIntegration.swf ***
       [mxmlc] MXMLJSC
       [mxmlc] -compiler.keep-generated-actionscript=false
       [mxmlc] -compiler.debug=false
       [mxmlc] +royalelib=C:/Users/LI20012663/AppData/Roaming/npm/node_modules/@apache-royale/royale-js/royale-asjs/frameworks/
       [mxmlc] -compiler.actionscript-file-encoding=UTF-8
       [mxmlc] -compiler.locale=
       [mxmlc] -link-report=D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/externs.txt
       [mxmlc] +configname=flex
       [mxmlc] -default-size
       [mxmlc] 800
       [mxmlc] 1000
       [mxmlc] -load-config=C:/Users/LI20012663/AppData/Roaming/npm/node_modules/@apache-royale/royale-js/royale-asjs/frameworks/flex-config.xml
       [mxmlc] -output=D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\WGRTFreightIntegration.swf
       [mxmlc] --
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/src/WGRTFLEX.mxml
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(40): col: 11 Warning: Definition mx.binding.utils.BindingUtils could not be found.
       [mxmlc] 
       [mxmlc] 			import mx.binding.utils.BindingUtils;
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(149): col: 10 Error: Access of possibly undefined property verticalScrollPosition through a reference with static type WGRTFLEX.
       [mxmlc] 
       [mxmlc] 				this.verticalScrollPosition = 0;
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(178): col: 25 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:Text width="100%" link="{loginHereClicked(event)}" styleName="purpleTextBold" 
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 27 Warning: Data binding will not be able to detect assignments to 'fcl_firstname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 49 Warning: Data binding will not be able to detect assignments to 'fcl_lastname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(192): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		width="100%"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(193): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		visible="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(194): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		includeInLayout="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheReadCommand.as(15): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheReadCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheUpdateCommand.as(16): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheUpdateCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(22): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(60): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\controller\ErrorMapWGRTFIApp.as(2): col: 1 Warning: declaration 'errorMapWGRTFIApp' will be scoped to the default namespace: WGRTFLEX: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] var errorMapWGRTFIApp:Array = [
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(24): col: 9 Warning: Definition mx.events.ResourceEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.events.ResourceEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(96): col: 73 Error: Call to a possibly undefined method loadResourceModule through a reference with static type IResourceManager.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.COMPLETE, localeLoadedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(98): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.ERROR, localeLoadFailedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(105): col: 56 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadFailedHandler(event:ResourceEvent):void {
       [mxmlc]                                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(109): col: 52 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadedHandler(event:ResourceEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(128): col: 13 Warning: variable 'fi' has no type declaration.
       [mxmlc] 
       [mxmlc] 			for (var fi in fields) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(260): col: 36 Error: Access of possibly undefined property length.
       [mxmlc] 
       [mxmlc] 				lc = url.length>0 ? url.charAt(length-1) : "";
       [mxmlc] 				                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(343): col: 10 Warning: Duplicate variable definition: rateReq.
       [mxmlc] 
       [mxmlc] 					var rateReq:RateRequest = event.data.requestData;
       [mxmlc] 					    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(374): col: 37 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createFCLLogoutUrl().url, "logout");
       [mxmlc] 				                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(376): col: 41 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createFCLAddAccountUrl().url, "addAccount");
       [mxmlc] 				                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(378): col: 37 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createMyProfileUrl().url, "myProfile");
       [mxmlc] 				                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: WGRTFIDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("wgrtfi").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\test\WGRTFIDelegateTest.as(13): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: WGRTFIDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(49): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF" verticalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(39): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\NonLoggedInAlert.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryDetailResultsView.mxml(41): col: 3 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:VBox		
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(46): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(57): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(36): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(46): col: 20 Warning: Data binding will not be able to detect assignments to '_workFlowManager'.
       [mxmlc] 
       [mxmlc] 		workFlowManager="{_workFlowManager}"
       [mxmlc] 		                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(47): col: 61 Warning: Data binding will not be able to detect assignments to 'rateHistoryPresentationModel'.
       [mxmlc] 
       [mxmlc] 		presentationModel="{ApplicationModel.getInstance().dataMap.rateHistoryPresentationModel}"
       [mxmlc] 		                                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(52): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(70): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\ResultsView.mxml(51): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.TransitTimeView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(20): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(59): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(24): col: 9 Warning: Definition flash.events.TextEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.TextEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(32): col: 9 Warning: Definition mx.validators.ZipCodeValidator could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.validators.ZipCodeValidator;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(270): col: 18 Error: Call to a possibly undefined method ZipCodeValidator.
       [mxmlc] 
       [mxmlc] 			zipVObj = new ZipCodeValidator();
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(411): col: 14 Warning: Duplicate variable definition: i.
       [mxmlc] 
       [mxmlc] 				for (var i:int=0; i<5; i++) {
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1835): col: 53 Error: Access of possibly undefined property text through a reference with static type EventTarget.
       [mxmlc] 
       [mxmlc]             zipVObj.validate(eventObj.currentTarget.text);
       [mxmlc]                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1847): col: 52 Error: Type was not found or was not a compile-time constant: TextEvent.
       [mxmlc] 
       [mxmlc]         public function handleUrlLinkClicked(event:TextEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("address").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(53): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(62): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(63): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(67): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 37 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 121 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 53 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(49): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(57): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(58): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 122 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 38 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 54 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\SelectionView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\baseheader\view\BaseHeader.mxml(22): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{toplevel.text.length > 0}" includeInLayout="{toplevel.text.length > 0}"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(18): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(87): col: 13 Warning: Duplicate variable definition: svc.
       [mxmlc] 
       [mxmlc] 			for (var svc:int=0; svc < resultDetailsBySvcByLegAC.length; svc++) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(88): col: 9 Warning: Duplicate variable definition: currentSvcResultsAR.
       [mxmlc] 
       [mxmlc] 				var currentSvcResultsAR:ArrayCollection = resultDetailsBySvcByLegAC.getItemAt(svc) as ArrayCollection;
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(90): col: 9 Warning: Duplicate variable definition: o.
       [mxmlc] 
       [mxmlc] 				var o:Object = resultsAR.getItemAt(0);
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(169): col: 14 Warning: Duplicate variable definition: x.
       [mxmlc] 
       [mxmlc] 				for (var x:int = 0; x < surcharges.length; x++)
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(593): col: 9 Warning: Duplicate variable definition: displayResults.
       [mxmlc] 
       [mxmlc] 				var displayResults:ArrayCollection = new ArrayCollection();
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rateHistory").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\GetRateHistoryView.mxml(75): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\LinkRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(60): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(62): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(67): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(75): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="4" paddingBottom="4" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(125): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(168): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(185): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox horizontalAlign="left" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" verticalGap="0" >		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\SortableHeaderRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(8): col: 45 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(23): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(24): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 23 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 22 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 4 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rate").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\GetRateView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button label="{resourceManager.getString('AllResources','common.getRatesAndTT')}" styleName="primaryButton" click="presentationModel.handleGetRate();"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 25 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 31 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 38 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(128): col: 65 Error: Type was not found or was not a compile-time constant: DataGridColumn.
       [mxmlc] 
       [mxmlc] 		    private function getResourceForString(item:Object, column:DataGridColumn):String
       [mxmlc] 		                                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 17 Error: Type was not found or was not a compile-time constant: TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 33 Error: Call to a possibly undefined method TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(261): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(263): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId" width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(275): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(277): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(288): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(302): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{!presentationModel.isLoggedIn}" includeInLayout="{!presentationModel.isLoggedIn}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(308): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{presentationModel.showLoggedInMessage}" includeInLayout="{presentationModel.showLoggedInMessage}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(314): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="10" paddingRight="10" paddingTop="5" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(327): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" id="hbox1" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(485): col: 4 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]    <mx:HBox id="hbox3" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" >
       [mxmlc]    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(8): col: 56 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function ShipmentSummaryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(91): col: 10 Error: Access of possibly undefined property parentDocument through a reference with static type ShipmentSummaryView.
       [mxmlc] 
       [mxmlc] 				this.parentDocument.rateResultsView.print();
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(95): col: 5 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]     <mx:DateFormatter id="dateFormatter" 
       [mxmlc]     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(98): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(110): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(113): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="TransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(115): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(133): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="MultiTransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(135): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(153): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="RatesAndTransitState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(155): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function TransitTimeEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: TransitTimeDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(7): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(27): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("transitTime").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\test\TransitTimeDelegateTest.as(20): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: TransitTimeDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetMultiTransitTimeView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalAlign="left" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetTransitTimeView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button enabled="{presentationModel.enableTransitTimeButton}"  label="{resourceManager.getString('AllResources','common.getTT')}" styleName="secondaryButton1" click="presentationModel.handleGetTransitTime();"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(13): col: 25 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _services:Dictionary;
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(14): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _properties:Dictionary;
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(44): col: 26 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._services = new Dictionary();
       [mxmlc] 				                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(61): col: 28 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._properties = new Dictionary();
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 35 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 52 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 38 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 55 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 32 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 49 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(8): col: 9 Warning: Definition flash.utils.describeType could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.describeType;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(9): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(88): col: 38 Error: Call to a possibly undefined method describeType.
       [mxmlc] 
       [mxmlc]          	var classDescription:XML = describeType(commandReference) as XML;
       [mxmlc]          	                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(5): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(18): col: 4 Error: Incorrect number of arguments.  Expected no more than 2
       [mxmlc] 
       [mxmlc] 			super(type, bubbles, cancelable );
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(51): col: 3 Error: A conflict exists with inherited definition source in class Event.
       [mxmlc] 
       [mxmlc] 		public function set source(source:IPresentationModel):void {
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(3): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(8): col: 34 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		private var iEventDispatcher : IEventDispatcher;
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(13): col: 53 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExEventBroadcaster(eventTarget:IEventDispatcher = null)
       [mxmlc] 		                                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(15): col: 27 Error: Call to a possibly undefined method EventDispatcher.
       [mxmlc] 
       [mxmlc] 			iEventDispatcher = new EventDispatcher(eventTarget);
       [mxmlc] 			                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(4): col: 8 Warning: Definition flash.events.KeyboardEvent could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.KeyboardEvent;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(5): col: 8 Warning: Definition flash.ui.Keyboard could not be found.
       [mxmlc] 
       [mxmlc] import flash.ui.Keyboard;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(65): col: 38 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]         this.addEventListener( Event.RENDER, onRender );
       [mxmlc]                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(75): col: 42 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]          this.removeEventListener( Event.RENDER, onRender );
       [mxmlc]                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(281): col: 13 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]   			    if(collection.length==0 || getTypedText()==""|| getTypedText()==null)
       [mxmlc]   			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(295): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function keyDownHandler(event:KeyboardEvent):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(304): col: 27 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.keyCode == Keyboard.UP && prevIndex==0)
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(310): col: 30 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    else if(event.keyCode==Keyboard.ESCAPE && showingDropdown)
       [mxmlc] 		                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(317): col: 43 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			else if(lookAhead && event.keyCode ==  Keyboard.BACKSPACE 
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(318): col: 24 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			|| event.keyCode == Keyboard.DELETE)
       [mxmlc] 			                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(322): col: 44 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.ctrlKey && event.keyCode == Keyboard.UP)
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(354): col: 37 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 					var label:String = itemToLabel(collection[0]);
       [mxmlc] 					                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(384): col: 8 Error: Call to a possibly undefined method open.
       [mxmlc] 
       [mxmlc]  	    	super.open();
       [mxmlc]  	    	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(393): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function textInput_changeHandler(event:Event):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(417): col: 4 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]  		collection.filterFunction = templateFilterFunction;
       [mxmlc]  		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(418): col: 3 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 		collection.refresh();
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(426): col: 29 Error: Method marked override must override another method.
       [mxmlc] 
       [mxmlc]   	override public function close(event:Event = null):void
       [mxmlc]   	                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(428): col: 6 Error: Call to a possibly undefined method close.
       [mxmlc] 
       [mxmlc]     	super.close(event);
       [mxmlc]     	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(3): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(23): col: 16 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime = getTimer();
       [mxmlc] 			            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(28): col: 15 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			stopTime = getTimer();
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(6): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(24): col: 28 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public var viewReference:DisplayObject;
       [mxmlc] 		                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(88): col: 35 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function AssignView(view:DisplayObject):void
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(93): col: 39 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function getRefernceToView():DisplayObject
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(5): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(19): col: 51 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function handleShowProgressBar(container:DisplayObject):void{
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(24): col: 18 Error: Implicit coercion of a value with static type Object to a possibly unrelated type mx.core.IFlexDisplayObject.
       [mxmlc] 
       [mxmlc] 			popUpWindow = PopUpManager.createPopUp(container,fetchPopUpView,false);
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(40): col: 32 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (x > popUpWindow.parent.width - popUpWindow.width) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(41): col: 34 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					x = x - (popUpWindow.parent.width - popUpWindow.width);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(47): col: 32 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (y > popUpWindow.parent.height - popUpWindow.height) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(48): col: 34 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					y = y - (popUpWindow.parent.height - popUpWindow.height);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(10): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(11): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(19): col: 46 Error: The definition of base class EventDispatcher was not found.
       [mxmlc] 
       [mxmlc] 	public class FedExPresentationModel extends EventDispatcher implements IPresentationModel
       [mxmlc] 	                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(25): col: 49 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExPresentationModel(target:IEventDispatcher=null)
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(8): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(14): col: 48 Error: interface IEventDispatcher was not found.
       [mxmlc] 
       [mxmlc]    public interface IPresentationModel extends IEventDispatcher
       [mxmlc]                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(41): col: 29 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			_optionsDictionary = new Dictionary();
       [mxmlc] 			                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(13): col: 26 Warning: return value for function 'getValueFromJS' has no type declaration.
       [mxmlc] 
       [mxmlc] 		public static function getValueFromJS(jsExpr:String, defVal:String="") { // get value of given JS Expression
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(3): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(4): col: 9 Warning: Definition flash.display.DisplayObjectContainer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObjectContainer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(5): col: 9 Warning: Definition flash.text.TextFormat could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.text.TextFormat;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 63 Error: Type was not found or was not a compile-time constant: DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 87 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(12): col: 12 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var ret:DisplayObject  = null;
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(13): col: 14 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var child:DisplayObject = null;
       [mxmlc] 			          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(18): col: 25 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 				} else if (child is DisplayObjectContainer) {
       [mxmlc] 				                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(19): col: 46 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 					ret = getChildByIdRecursive(id,child as DisplayObjectContainer);
       [mxmlc] 					                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 22 Error: Type was not found or was not a compile-time constant: TextFormat.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 38 Error: Call to a possibly undefined method getTextFormat through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(43): col: 8 Error: Call to a possibly undefined method replaceText through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 				tf.replaceText(result.index, result.index + result[0].length, result[1]);
       [mxmlc] 				   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(46): col: 27 Error: Call to a possibly undefined method TextFormat.
       [mxmlc] 
       [mxmlc] 				tf.setTextFormat(	new TextFormat(	"GGSuperscript", 
       [mxmlc] 				                 	    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(11): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(12): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(50): col: 42 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrTexts4Comp(comp:DisplayObject, errTexts:ArrayCollection):void {
       [mxmlc] 		                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(54): col: 41 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrText4Comp(comp:DisplayObject, errTxt:String):void {
       [mxmlc] 		                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 54 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(75): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(112): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 23 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 40 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(17): col: 32 Error: Access of possibly undefined property ADDED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.ADDED, registerView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(18): col: 32 Error: Access of possibly undefined property REMOVED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.REMOVED, unregisterView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(3): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(10): col: 29 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var viewHelpers : Dictionary;      
       [mxmlc] 		                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(25): col: 22 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			viewHelpers = new Dictionary();
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FetchPopUpView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:TitleWindow 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\IFedExViewHelper.as(3): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(2): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(37): col: 23 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime								= getTimer();
       [mxmlc] 			         								  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(85): col: 27 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 				sections[name]						= getTimer();
       [mxmlc] 				              						  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(95): col: 86 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var logString:String 					= name + "	(" + getTimeDifferenceString(sections[name], getTimer()) + ")";
       [mxmlc] 			                     					          	                                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(124): col: 50 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var time:String				= numberFormatter.format(((getTimer() - startTime) / 1000));
       [mxmlc] 			               				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(45): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(ResultEvent.RESULT, resultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(46): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(FaultEvent.FAULT, faultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(3): col: 9 Warning: Definition flash.utils.escapeMultiByte could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.escapeMultiByte;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(4): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(629): col: 11 Error: Call to a possibly undefined method escapeMultiByte.
       [mxmlc] 
       [mxmlc] 			return flash.utils.escapeMultiByte(inValue);
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(710): col: 20 Error: Access of possibly undefined property validPatternChars through a reference with static type mx.formatters.PhoneFormatter.
       [mxmlc] 
       [mxmlc] 				phoneFormatter.validPatternChars				= "#-() ";
       [mxmlc] 				               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(738): col: 12 Error: Call to a possibly undefined method getQualifiedClassName.
       [mxmlc] 
       [mxmlc] 				return getQualifiedClassName(object);
       [mxmlc] 				       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] 15.846897 seconds
   
   BUILD FAILED
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:51: The following error occurred while executing this line:
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:75: mxmlc task failed.
   
   Total time: 19 seconds
   `


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] Harbs edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
Harbs edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643346656


   You need to remove all flash import references.
   `flash.external.ExternalInterface` should be `mx.external.ExternalInterface`
   
   `flash.events.IEventDispatcher` should be `org.apache.royale.events.IEventDispatcher`
   etc.
   
   Not sure why you're getting an error with `import mx.binding.utils.BindingUtils` Are you sure your are using a "flex" config?
   
   The easiest way to fix imports is to delete the "not found" imports, then go to the reference of the missing class and let VS Code give you code intelligence for the available matching classes to pull in the imports via code intelligence.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643396685


   I have the extension added in VSCode, but it is not showing the syntax error. 
   
   Im having configname as flex, do we have to mentioned this in VS code?
   
   Some fixes I did, few errors are resolved. I'm getting Error: This attribute is unexpected. It will be ignored for some attributes of components, Is there any references for components? Intelligence is not showing it as Error. Latest build output
   
   `
   init:
       [mkdir] Created dir: D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\autoTestLibs\includes
        [echo] **** Using BuildTimeStamp=20061222 where as passed TMSTAMP=${TMSTAMP} and CurrentTMSTAMP=20061222
        [echo] BuildTimeStamp=20061222 StaticCheckTS=20061222
   
   buildproperties:
   
   serviceconfig.xml:
        [echo] *** Created all the serviceconfig.xml files ***
   
   createproperties:
   
   createsrcswfprod:
   
   createsrcswf:
        [echo] *** create D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/WGRTFreightIntegration.swf ***
       [mxmlc] MXMLJSC
       [mxmlc] -compiler.keep-generated-actionscript=false
       [mxmlc] -compiler.debug=false
       [mxmlc] +royalelib=C:/Users/LI20012663/AppData/Roaming/npm/node_modules/@apache-royale/royale-js/royale-asjs/frameworks/
       [mxmlc] -compiler.actionscript-file-encoding=UTF-8
       [mxmlc] -compiler.locale=
       [mxmlc] -link-report=D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/externs.txt
       [mxmlc] +configname=flex
       [mxmlc] -default-size
       [mxmlc] 800
       [mxmlc] 1000
       [mxmlc] -load-config=C:/Users/LI20012663/AppData/Roaming/npm/node_modules/@apache-royale/royale-js/royale-asjs/frameworks/flex-config.xml
       [mxmlc] -output=D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\WGRTFreightIntegration.swf
       [mxmlc] --
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/src/WGRTFLEX.mxml
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(40): col: 11 Warning: Definition mx.binding.utils.BindingUtils could not be found.
       [mxmlc] 
       [mxmlc] 			import mx.binding.utils.BindingUtils;
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(149): col: 10 Error: Access of possibly undefined property verticalScrollPosition through a reference with static type WGRTFLEX.
       [mxmlc] 
       [mxmlc] 				this.verticalScrollPosition = 0;
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(178): col: 25 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:Text width="100%" link="{loginHereClicked(event)}" styleName="purpleTextBold" 
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 27 Warning: Data binding will not be able to detect assignments to 'fcl_firstname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 49 Warning: Data binding will not be able to detect assignments to 'fcl_lastname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(192): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		width="100%"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(193): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		visible="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(194): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		includeInLayout="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheReadCommand.as(15): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheReadCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheUpdateCommand.as(16): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheUpdateCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(22): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(60): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\controller\ErrorMapWGRTFIApp.as(2): col: 1 Warning: declaration 'errorMapWGRTFIApp' will be scoped to the default namespace: WGRTFLEX: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] var errorMapWGRTFIApp:Array = [
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(24): col: 9 Warning: Definition mx.events.ResourceEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.events.ResourceEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(96): col: 73 Error: Call to a possibly undefined method loadResourceModule through a reference with static type IResourceManager.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.COMPLETE, localeLoadedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(98): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.ERROR, localeLoadFailedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(105): col: 56 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadFailedHandler(event:ResourceEvent):void {
       [mxmlc]                                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(109): col: 52 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadedHandler(event:ResourceEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(128): col: 13 Warning: variable 'fi' has no type declaration.
       [mxmlc] 
       [mxmlc] 			for (var fi in fields) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(260): col: 36 Error: Access of possibly undefined property length.
       [mxmlc] 
       [mxmlc] 				lc = url.length>0 ? url.charAt(length-1) : "";
       [mxmlc] 				                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(343): col: 10 Warning: Duplicate variable definition: rateReq.
       [mxmlc] 
       [mxmlc] 					var rateReq:RateRequest = event.data.requestData;
       [mxmlc] 					    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(374): col: 37 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createFCLLogoutUrl().url, "logout");
       [mxmlc] 				                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(376): col: 41 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createFCLAddAccountUrl().url, "addAccount");
       [mxmlc] 				                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(378): col: 37 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createMyProfileUrl().url, "myProfile");
       [mxmlc] 				                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: WGRTFIDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("wgrtfi").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\test\WGRTFIDelegateTest.as(13): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: WGRTFIDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(49): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF" verticalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(39): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\NonLoggedInAlert.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryDetailResultsView.mxml(41): col: 3 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:VBox		
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(46): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(57): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(36): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(46): col: 20 Warning: Data binding will not be able to detect assignments to '_workFlowManager'.
       [mxmlc] 
       [mxmlc] 		workFlowManager="{_workFlowManager}"
       [mxmlc] 		                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(47): col: 61 Warning: Data binding will not be able to detect assignments to 'rateHistoryPresentationModel'.
       [mxmlc] 
       [mxmlc] 		presentationModel="{ApplicationModel.getInstance().dataMap.rateHistoryPresentationModel}"
       [mxmlc] 		                                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(52): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(70): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\ResultsView.mxml(51): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.TransitTimeView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(20): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(59): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(24): col: 9 Warning: Definition flash.events.TextEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.TextEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(32): col: 9 Warning: Definition mx.validators.ZipCodeValidator could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.validators.ZipCodeValidator;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(270): col: 18 Error: Call to a possibly undefined method ZipCodeValidator.
       [mxmlc] 
       [mxmlc] 			zipVObj = new ZipCodeValidator();
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(411): col: 14 Warning: Duplicate variable definition: i.
       [mxmlc] 
       [mxmlc] 				for (var i:int=0; i<5; i++) {
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1835): col: 53 Error: Access of possibly undefined property text through a reference with static type EventTarget.
       [mxmlc] 
       [mxmlc]             zipVObj.validate(eventObj.currentTarget.text);
       [mxmlc]                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1847): col: 52 Error: Type was not found or was not a compile-time constant: TextEvent.
       [mxmlc] 
       [mxmlc]         public function handleUrlLinkClicked(event:TextEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("address").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(53): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(62): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(63): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(67): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 37 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 121 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 53 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(49): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(57): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(58): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 122 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 38 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 54 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\SelectionView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\baseheader\view\BaseHeader.mxml(22): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{toplevel.text.length > 0}" includeInLayout="{toplevel.text.length > 0}"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(18): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(87): col: 13 Warning: Duplicate variable definition: svc.
       [mxmlc] 
       [mxmlc] 			for (var svc:int=0; svc < resultDetailsBySvcByLegAC.length; svc++) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(88): col: 9 Warning: Duplicate variable definition: currentSvcResultsAR.
       [mxmlc] 
       [mxmlc] 				var currentSvcResultsAR:ArrayCollection = resultDetailsBySvcByLegAC.getItemAt(svc) as ArrayCollection;
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(90): col: 9 Warning: Duplicate variable definition: o.
       [mxmlc] 
       [mxmlc] 				var o:Object = resultsAR.getItemAt(0);
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(169): col: 14 Warning: Duplicate variable definition: x.
       [mxmlc] 
       [mxmlc] 				for (var x:int = 0; x < surcharges.length; x++)
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(593): col: 9 Warning: Duplicate variable definition: displayResults.
       [mxmlc] 
       [mxmlc] 				var displayResults:ArrayCollection = new ArrayCollection();
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rateHistory").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\GetRateHistoryView.mxml(75): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\LinkRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(60): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(62): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(67): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(75): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="4" paddingBottom="4" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(125): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(168): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(185): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox horizontalAlign="left" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" verticalGap="0" >		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\SortableHeaderRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(8): col: 45 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(23): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(24): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 23 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 22 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 4 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rate").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\GetRateView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button label="{resourceManager.getString('AllResources','common.getRatesAndTT')}" styleName="primaryButton" click="presentationModel.handleGetRate();"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 25 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 31 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 38 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(128): col: 65 Error: Type was not found or was not a compile-time constant: DataGridColumn.
       [mxmlc] 
       [mxmlc] 		    private function getResourceForString(item:Object, column:DataGridColumn):String
       [mxmlc] 		                                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 17 Error: Type was not found or was not a compile-time constant: TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 33 Error: Call to a possibly undefined method TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(261): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(263): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId" width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(275): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(277): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(288): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(302): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{!presentationModel.isLoggedIn}" includeInLayout="{!presentationModel.isLoggedIn}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(308): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{presentationModel.showLoggedInMessage}" includeInLayout="{presentationModel.showLoggedInMessage}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(314): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="10" paddingRight="10" paddingTop="5" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(327): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" id="hbox1" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(485): col: 4 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]    <mx:HBox id="hbox3" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" >
       [mxmlc]    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(8): col: 56 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function ShipmentSummaryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(91): col: 10 Error: Access of possibly undefined property parentDocument through a reference with static type ShipmentSummaryView.
       [mxmlc] 
       [mxmlc] 				this.parentDocument.rateResultsView.print();
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(95): col: 5 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]     <mx:DateFormatter id="dateFormatter" 
       [mxmlc]     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(98): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(110): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(113): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="TransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(115): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(133): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="MultiTransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(135): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(153): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="RatesAndTransitState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(155): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function TransitTimeEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: TransitTimeDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(7): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(27): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("transitTime").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\test\TransitTimeDelegateTest.as(20): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: TransitTimeDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetMultiTransitTimeView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalAlign="left" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetTransitTimeView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button enabled="{presentationModel.enableTransitTimeButton}"  label="{resourceManager.getString('AllResources','common.getTT')}" styleName="secondaryButton1" click="presentationModel.handleGetTransitTime();"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(13): col: 25 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _services:Dictionary;
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(14): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _properties:Dictionary;
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(44): col: 26 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._services = new Dictionary();
       [mxmlc] 				                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(61): col: 28 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._properties = new Dictionary();
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 35 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 52 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 38 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 55 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 32 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 49 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(8): col: 9 Warning: Definition flash.utils.describeType could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.describeType;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(9): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(88): col: 38 Error: Call to a possibly undefined method describeType.
       [mxmlc] 
       [mxmlc]          	var classDescription:XML = describeType(commandReference) as XML;
       [mxmlc]          	                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(5): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(18): col: 4 Error: Incorrect number of arguments.  Expected no more than 2
       [mxmlc] 
       [mxmlc] 			super(type, bubbles, cancelable );
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(51): col: 3 Error: A conflict exists with inherited definition source in class Event.
       [mxmlc] 
       [mxmlc] 		public function set source(source:IPresentationModel):void {
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(3): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(8): col: 34 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		private var iEventDispatcher : IEventDispatcher;
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(13): col: 53 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExEventBroadcaster(eventTarget:IEventDispatcher = null)
       [mxmlc] 		                                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(15): col: 27 Error: Call to a possibly undefined method EventDispatcher.
       [mxmlc] 
       [mxmlc] 			iEventDispatcher = new EventDispatcher(eventTarget);
       [mxmlc] 			                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(4): col: 8 Warning: Definition flash.events.KeyboardEvent could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.KeyboardEvent;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(5): col: 8 Warning: Definition flash.ui.Keyboard could not be found.
       [mxmlc] 
       [mxmlc] import flash.ui.Keyboard;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(65): col: 38 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]         this.addEventListener( Event.RENDER, onRender );
       [mxmlc]                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(75): col: 42 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]          this.removeEventListener( Event.RENDER, onRender );
       [mxmlc]                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(281): col: 13 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]   			    if(collection.length==0 || getTypedText()==""|| getTypedText()==null)
       [mxmlc]   			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(295): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function keyDownHandler(event:KeyboardEvent):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(304): col: 27 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.keyCode == Keyboard.UP && prevIndex==0)
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(310): col: 30 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    else if(event.keyCode==Keyboard.ESCAPE && showingDropdown)
       [mxmlc] 		                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(317): col: 43 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			else if(lookAhead && event.keyCode ==  Keyboard.BACKSPACE 
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(318): col: 24 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			|| event.keyCode == Keyboard.DELETE)
       [mxmlc] 			                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(322): col: 44 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.ctrlKey && event.keyCode == Keyboard.UP)
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(354): col: 37 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 					var label:String = itemToLabel(collection[0]);
       [mxmlc] 					                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(384): col: 8 Error: Call to a possibly undefined method open.
       [mxmlc] 
       [mxmlc]  	    	super.open();
       [mxmlc]  	    	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(393): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function textInput_changeHandler(event:Event):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(417): col: 4 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]  		collection.filterFunction = templateFilterFunction;
       [mxmlc]  		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(418): col: 3 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 		collection.refresh();
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(426): col: 29 Error: Method marked override must override another method.
       [mxmlc] 
       [mxmlc]   	override public function close(event:Event = null):void
       [mxmlc]   	                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(428): col: 6 Error: Call to a possibly undefined method close.
       [mxmlc] 
       [mxmlc]     	super.close(event);
       [mxmlc]     	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(3): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(23): col: 16 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime = getTimer();
       [mxmlc] 			            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(28): col: 15 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			stopTime = getTimer();
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(6): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(24): col: 28 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public var viewReference:DisplayObject;
       [mxmlc] 		                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(88): col: 35 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function AssignView(view:DisplayObject):void
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(93): col: 39 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function getRefernceToView():DisplayObject
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(5): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(19): col: 51 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function handleShowProgressBar(container:DisplayObject):void{
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(24): col: 18 Error: Implicit coercion of a value with static type Object to a possibly unrelated type mx.core.IFlexDisplayObject.
       [mxmlc] 
       [mxmlc] 			popUpWindow = PopUpManager.createPopUp(container,fetchPopUpView,false);
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(40): col: 32 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (x > popUpWindow.parent.width - popUpWindow.width) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(41): col: 34 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					x = x - (popUpWindow.parent.width - popUpWindow.width);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(47): col: 32 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (y > popUpWindow.parent.height - popUpWindow.height) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(48): col: 34 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					y = y - (popUpWindow.parent.height - popUpWindow.height);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(10): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(11): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(19): col: 46 Error: The definition of base class EventDispatcher was not found.
       [mxmlc] 
       [mxmlc] 	public class FedExPresentationModel extends EventDispatcher implements IPresentationModel
       [mxmlc] 	                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(25): col: 49 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExPresentationModel(target:IEventDispatcher=null)
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(8): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(14): col: 48 Error: interface IEventDispatcher was not found.
       [mxmlc] 
       [mxmlc]    public interface IPresentationModel extends IEventDispatcher
       [mxmlc]                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(41): col: 29 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			_optionsDictionary = new Dictionary();
       [mxmlc] 			                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(13): col: 26 Warning: return value for function 'getValueFromJS' has no type declaration.
       [mxmlc] 
       [mxmlc] 		public static function getValueFromJS(jsExpr:String, defVal:String="") { // get value of given JS Expression
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(3): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(4): col: 9 Warning: Definition flash.display.DisplayObjectContainer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObjectContainer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(5): col: 9 Warning: Definition flash.text.TextFormat could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.text.TextFormat;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 63 Error: Type was not found or was not a compile-time constant: DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 87 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(12): col: 12 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var ret:DisplayObject  = null;
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(13): col: 14 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var child:DisplayObject = null;
       [mxmlc] 			          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(18): col: 25 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 				} else if (child is DisplayObjectContainer) {
       [mxmlc] 				                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(19): col: 46 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 					ret = getChildByIdRecursive(id,child as DisplayObjectContainer);
       [mxmlc] 					                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 22 Error: Type was not found or was not a compile-time constant: TextFormat.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 38 Error: Call to a possibly undefined method getTextFormat through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(43): col: 8 Error: Call to a possibly undefined method replaceText through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 				tf.replaceText(result.index, result.index + result[0].length, result[1]);
       [mxmlc] 				   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(46): col: 27 Error: Call to a possibly undefined method TextFormat.
       [mxmlc] 
       [mxmlc] 				tf.setTextFormat(	new TextFormat(	"GGSuperscript", 
       [mxmlc] 				                 	    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(11): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(12): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(50): col: 42 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrTexts4Comp(comp:DisplayObject, errTexts:ArrayCollection):void {
       [mxmlc] 		                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(54): col: 41 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrText4Comp(comp:DisplayObject, errTxt:String):void {
       [mxmlc] 		                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 54 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(75): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(112): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 23 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 40 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(17): col: 32 Error: Access of possibly undefined property ADDED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.ADDED, registerView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(18): col: 32 Error: Access of possibly undefined property REMOVED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.REMOVED, unregisterView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(3): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(10): col: 29 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var viewHelpers : Dictionary;      
       [mxmlc] 		                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(25): col: 22 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			viewHelpers = new Dictionary();
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FetchPopUpView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:TitleWindow 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\IFedExViewHelper.as(3): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(2): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(37): col: 23 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime								= getTimer();
       [mxmlc] 			         								  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(85): col: 27 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 				sections[name]						= getTimer();
       [mxmlc] 				              						  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(95): col: 86 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var logString:String 					= name + "	(" + getTimeDifferenceString(sections[name], getTimer()) + ")";
       [mxmlc] 			                     					          	                                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(124): col: 50 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var time:String				= numberFormatter.format(((getTimer() - startTime) / 1000));
       [mxmlc] 			               				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(45): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(ResultEvent.RESULT, resultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(46): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(FaultEvent.FAULT, faultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(3): col: 9 Warning: Definition flash.utils.escapeMultiByte could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.escapeMultiByte;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(4): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(629): col: 11 Error: Call to a possibly undefined method escapeMultiByte.
       [mxmlc] 
       [mxmlc] 			return flash.utils.escapeMultiByte(inValue);
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(710): col: 20 Error: Access of possibly undefined property validPatternChars through a reference with static type mx.formatters.PhoneFormatter.
       [mxmlc] 
       [mxmlc] 				phoneFormatter.validPatternChars				= "#-() ";
       [mxmlc] 				               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(738): col: 12 Error: Call to a possibly undefined method getQualifiedClassName.
       [mxmlc] 
       [mxmlc] 				return getQualifiedClassName(object);
       [mxmlc] 				       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] 15.846897 seconds
   
   BUILD FAILED
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:51: The following error occurred while executing this line:
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:75: mxmlc task failed.
   
   Total time: 19 seconds
   `


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] greg-dove commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
greg-dove commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643725541


   One small variation to that: there is actually an emulation for
   flash.utils.getTimer. It should be at org.apache.royale.utils.getTimer
   iirc. I know it's there because I added it at one point, and I've used it
   since for porting work.
   
   
   
   On Sun, 14 Jun 2020, 17:25 aharui, <no...@github.com> wrote:
   
   > There are too many errors for me to take the time to address each one. I
   > am going to provide some information that you will have to combine with
   > your knowledge of Flex to have the greatest impact on the number of errors,
   > then we can discuss the leftover harder cases.
   >
   > First, all of your MXML files need to converted like the main app. You
   > have to change the mx namespace URI and add the fx namespace URI and
   > convert some tags like Style, Script, and Metadata to fx.
   >
   > Some issues, like the CSS and States is due to differences between Flex 3
   > and Flex 4. Here is the documentation on the differences:
   > https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/upgrading-flex3-to-flex4-techguide.pdf
   >
   > Problems like "import flash" should be described in the Royale
   > documentation. Flex and Royale are designed to be a layer above the Flash
   > runtime so it should have been possible to write a Flex app without ever
   > writing "import flash". Royale is emulating Flex, not Flash, so where your
   > code uses "import flash", you will have to find a replacement for it. Many
   > things have been emulated in mx packages like mx.net.FileReference, but not
   > everything (at least not yet) so your team will have to consider how
   > important that Flash feature was and what expense you want to go to in
   > order to get it to work again.
   >
   > Another group of errors is due to the fact that the JS runtime does not
   > support weak reference listeners. Many times weak reference listeners were
   > not actually needed so your team will have to consider each usage and
   > decide what to do. If you think you really need weak reference listeners
   > then describe the scenario in a separate issue.
   >
   > Another group of errors is because Royale does not currently have an
   > emulation for Flash's Dictionary. Many times it also isn't needed. If you
   > are not using weak-reference Dictionaries then you can often use an Object
   > if the toString() is unique.
   >
   > Another group of errors is because DisplayObject is no longer the lowest
   > level visual element. Try using IUIComponent, UIComponent, or
   > IFlexDisplayObject.
   >
   > Another group is use of getTimer(). You could replace it with Date.now().
   > There is a getDefinitionByName in org.apache.royale.reflection.
   >
   > Make these changes and see what's left.
   >
   > —
   > You are receiving this because you are subscribed to this thread.
   > Reply to this email directly, view it on GitHub
   > <https://github.com/apache/royale-asjs/issues/861#issuecomment-643720569>,
   > or unsubscribe
   > <https://github.com/notifications/unsubscribe-auth/ABC3PVVVDQLSLJRC2UAJNDDRWRNMFANCNFSM4N4AQB5Q>
   > .
   >
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643396685


   I have the extension added in VSCode, but it is not showing the syntax error. 
   
   Im having configname as flex, do we have to mentioned this in VS code?
   
   Some fixes I did, few errors are resolved. I'm getting Error: This attribute is unexpected. It will be ignored for some attributes of components, Is there any references for components? Intelligence is not showing it as Error. Latest build output
   
   `
   init:
       [mkdir] Created dir: D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\autoTestLibs\includes
        [echo] **** Using BuildTimeStamp=20061222 where as passed TMSTAMP=${TMSTAMP} and CurrentTMSTAMP=20061222
        [echo] BuildTimeStamp=20061222 StaticCheckTS=20061222
   
   buildproperties:
   
   serviceconfig.xml:
        [echo] *** Created all the serviceconfig.xml files ***
   
   createproperties:
   
   createsrcswfprod:
   
   createsrcswf:
        [echo] *** create D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/WGRTFreightIntegration.swf ***
       [mxmlc] MXMLJSC
       [mxmlc] -compiler.keep-generated-actionscript=false
       [mxmlc] -compiler.debug=false
       [mxmlc] +royalelib=C:/Users/LI20012663/AppData/Roaming/npm/node_modules/@apache-royale/royale-js/royale-asjs/frameworks/
       [mxmlc] -compiler.actionscript-file-encoding=UTF-8
       [mxmlc] -compiler.locale=
       [mxmlc] -link-report=D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/externs.txt
       [mxmlc] +configname=flex
       [mxmlc] -default-size
       [mxmlc] 800
       [mxmlc] 1000
       [mxmlc] -load-config=C:/Users/LI20012663/AppData/Roaming/npm/node_modules/@apache-royale/royale-js/royale-asjs/frameworks/flex-config.xml
       [mxmlc] -output=D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\WGRTFreightIntegration.swf
       [mxmlc] --
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/src/WGRTFLEX.mxml
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(40): col: 11 Warning: Definition mx.binding.utils.BindingUtils could not be found.
       [mxmlc] 
       [mxmlc] 			import mx.binding.utils.BindingUtils;
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(149): col: 10 Error: Access of possibly undefined property verticalScrollPosition through a reference with static type WGRTFLEX.
       [mxmlc] 
       [mxmlc] 				this.verticalScrollPosition = 0;
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(178): col: 25 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:Text width="100%" link="{loginHereClicked(event)}" styleName="purpleTextBold" 
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 27 Warning: Data binding will not be able to detect assignments to 'fcl_firstname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 49 Warning: Data binding will not be able to detect assignments to 'fcl_lastname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(192): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		width="100%"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(193): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		visible="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(194): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		includeInLayout="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheReadCommand.as(15): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheReadCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheUpdateCommand.as(16): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheUpdateCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(22): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(60): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\controller\ErrorMapWGRTFIApp.as(2): col: 1 Warning: declaration 'errorMapWGRTFIApp' will be scoped to the default namespace: WGRTFLEX: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] var errorMapWGRTFIApp:Array = [
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(24): col: 9 Warning: Definition mx.events.ResourceEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.events.ResourceEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(96): col: 73 Error: Call to a possibly undefined method loadResourceModule through a reference with static type IResourceManager.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.COMPLETE, localeLoadedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(98): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.ERROR, localeLoadFailedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(105): col: 56 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadFailedHandler(event:ResourceEvent):void {
       [mxmlc]                                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(109): col: 52 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadedHandler(event:ResourceEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(128): col: 13 Warning: variable 'fi' has no type declaration.
       [mxmlc] 
       [mxmlc] 			for (var fi in fields) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(260): col: 36 Error: Access of possibly undefined property length.
       [mxmlc] 
       [mxmlc] 				lc = url.length>0 ? url.charAt(length-1) : "";
       [mxmlc] 				                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(343): col: 10 Warning: Duplicate variable definition: rateReq.
       [mxmlc] 
       [mxmlc] 					var rateReq:RateRequest = event.data.requestData;
       [mxmlc] 					    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(374): col: 37 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createFCLLogoutUrl().url, "logout");
       [mxmlc] 				                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(376): col: 41 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createFCLAddAccountUrl().url, "addAccount");
       [mxmlc] 				                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(378): col: 37 Error: Access of possibly undefined property url through a reference with static type String.
       [mxmlc] 
       [mxmlc] 				switchPage(createMyProfileUrl().url, "myProfile");
       [mxmlc] 				                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: WGRTFIDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("wgrtfi").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\test\WGRTFIDelegateTest.as(13): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: WGRTFIDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(49): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF" verticalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(39): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\NonLoggedInAlert.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryDetailResultsView.mxml(41): col: 3 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:VBox		
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(46): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(57): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(36): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(46): col: 20 Warning: Data binding will not be able to detect assignments to '_workFlowManager'.
       [mxmlc] 
       [mxmlc] 		workFlowManager="{_workFlowManager}"
       [mxmlc] 		                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(47): col: 61 Warning: Data binding will not be able to detect assignments to 'rateHistoryPresentationModel'.
       [mxmlc] 
       [mxmlc] 		presentationModel="{ApplicationModel.getInstance().dataMap.rateHistoryPresentationModel}"
       [mxmlc] 		                                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(52): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(70): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\ResultsView.mxml(51): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.TransitTimeView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(20): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(59): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(24): col: 9 Warning: Definition flash.events.TextEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.TextEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(32): col: 9 Warning: Definition mx.validators.ZipCodeValidator could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.validators.ZipCodeValidator;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(270): col: 18 Error: Call to a possibly undefined method ZipCodeValidator.
       [mxmlc] 
       [mxmlc] 			zipVObj = new ZipCodeValidator();
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(411): col: 14 Warning: Duplicate variable definition: i.
       [mxmlc] 
       [mxmlc] 				for (var i:int=0; i<5; i++) {
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1835): col: 53 Error: Access of possibly undefined property text through a reference with static type EventTarget.
       [mxmlc] 
       [mxmlc]             zipVObj.validate(eventObj.currentTarget.text);
       [mxmlc]                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1847): col: 52 Error: Type was not found or was not a compile-time constant: TextEvent.
       [mxmlc] 
       [mxmlc]         public function handleUrlLinkClicked(event:TextEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("address").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(53): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(62): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(63): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(67): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 37 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 121 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 53 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(49): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(57): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(58): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 122 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 38 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 54 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\SelectionView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\baseheader\view\BaseHeader.mxml(22): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{toplevel.text.length > 0}" includeInLayout="{toplevel.text.length > 0}"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(18): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(87): col: 13 Warning: Duplicate variable definition: svc.
       [mxmlc] 
       [mxmlc] 			for (var svc:int=0; svc < resultDetailsBySvcByLegAC.length; svc++) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(88): col: 9 Warning: Duplicate variable definition: currentSvcResultsAR.
       [mxmlc] 
       [mxmlc] 				var currentSvcResultsAR:ArrayCollection = resultDetailsBySvcByLegAC.getItemAt(svc) as ArrayCollection;
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(90): col: 9 Warning: Duplicate variable definition: o.
       [mxmlc] 
       [mxmlc] 				var o:Object = resultsAR.getItemAt(0);
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(169): col: 14 Warning: Duplicate variable definition: x.
       [mxmlc] 
       [mxmlc] 				for (var x:int = 0; x < surcharges.length; x++)
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(593): col: 9 Warning: Duplicate variable definition: displayResults.
       [mxmlc] 
       [mxmlc] 				var displayResults:ArrayCollection = new ArrayCollection();
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rateHistory").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\GetRateHistoryView.mxml(75): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\LinkRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(60): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(62): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(67): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(75): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="4" paddingBottom="4" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(125): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(168): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(185): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox horizontalAlign="left" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" verticalGap="0" >		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\SortableHeaderRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(8): col: 45 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(23): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(24): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 23 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 22 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 4 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rate").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\GetRateView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button label="{resourceManager.getString('AllResources','common.getRatesAndTT')}" styleName="primaryButton" click="presentationModel.handleGetRate();"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 25 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 31 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 38 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(128): col: 65 Error: Type was not found or was not a compile-time constant: DataGridColumn.
       [mxmlc] 
       [mxmlc] 		    private function getResourceForString(item:Object, column:DataGridColumn):String
       [mxmlc] 		                                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 17 Error: Type was not found or was not a compile-time constant: TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 33 Error: Call to a possibly undefined method TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(261): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(263): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId" width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(275): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(277): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(288): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(302): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{!presentationModel.isLoggedIn}" includeInLayout="{!presentationModel.isLoggedIn}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(308): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{presentationModel.showLoggedInMessage}" includeInLayout="{presentationModel.showLoggedInMessage}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(314): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="10" paddingRight="10" paddingTop="5" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(327): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" id="hbox1" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(485): col: 4 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]    <mx:HBox id="hbox3" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" >
       [mxmlc]    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(8): col: 56 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function ShipmentSummaryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(91): col: 10 Error: Access of possibly undefined property parentDocument through a reference with static type ShipmentSummaryView.
       [mxmlc] 
       [mxmlc] 				this.parentDocument.rateResultsView.print();
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(95): col: 5 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]     <mx:DateFormatter id="dateFormatter" 
       [mxmlc]     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(98): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(110): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(113): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="TransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(115): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(133): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="MultiTransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(135): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(153): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="RatesAndTransitState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(155): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function TransitTimeEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: TransitTimeDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(7): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(27): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("transitTime").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\test\TransitTimeDelegateTest.as(20): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: TransitTimeDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetMultiTransitTimeView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalAlign="left" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetTransitTimeView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button enabled="{presentationModel.enableTransitTimeButton}"  label="{resourceManager.getString('AllResources','common.getTT')}" styleName="secondaryButton1" click="presentationModel.handleGetTransitTime();"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(13): col: 25 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _services:Dictionary;
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(14): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _properties:Dictionary;
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(44): col: 26 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._services = new Dictionary();
       [mxmlc] 				                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(61): col: 28 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._properties = new Dictionary();
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 35 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 52 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 38 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 55 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 32 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 49 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(8): col: 9 Warning: Definition flash.utils.describeType could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.describeType;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(9): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(88): col: 38 Error: Call to a possibly undefined method describeType.
       [mxmlc] 
       [mxmlc]          	var classDescription:XML = describeType(commandReference) as XML;
       [mxmlc]          	                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(5): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(18): col: 4 Error: Incorrect number of arguments.  Expected no more than 2
       [mxmlc] 
       [mxmlc] 			super(type, bubbles, cancelable );
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(51): col: 3 Error: A conflict exists with inherited definition source in class Event.
       [mxmlc] 
       [mxmlc] 		public function set source(source:IPresentationModel):void {
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(3): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(8): col: 34 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		private var iEventDispatcher : IEventDispatcher;
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(13): col: 53 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExEventBroadcaster(eventTarget:IEventDispatcher = null)
       [mxmlc] 		                                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(15): col: 27 Error: Call to a possibly undefined method EventDispatcher.
       [mxmlc] 
       [mxmlc] 			iEventDispatcher = new EventDispatcher(eventTarget);
       [mxmlc] 			                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(4): col: 8 Warning: Definition flash.events.KeyboardEvent could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.KeyboardEvent;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(5): col: 8 Warning: Definition flash.ui.Keyboard could not be found.
       [mxmlc] 
       [mxmlc] import flash.ui.Keyboard;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(65): col: 38 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]         this.addEventListener( Event.RENDER, onRender );
       [mxmlc]                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(75): col: 42 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]          this.removeEventListener( Event.RENDER, onRender );
       [mxmlc]                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(281): col: 13 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]   			    if(collection.length==0 || getTypedText()==""|| getTypedText()==null)
       [mxmlc]   			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(295): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function keyDownHandler(event:KeyboardEvent):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(304): col: 27 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.keyCode == Keyboard.UP && prevIndex==0)
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(310): col: 30 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    else if(event.keyCode==Keyboard.ESCAPE && showingDropdown)
       [mxmlc] 		                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(317): col: 43 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			else if(lookAhead && event.keyCode ==  Keyboard.BACKSPACE 
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(318): col: 24 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			|| event.keyCode == Keyboard.DELETE)
       [mxmlc] 			                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(322): col: 44 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.ctrlKey && event.keyCode == Keyboard.UP)
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(354): col: 37 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 					var label:String = itemToLabel(collection[0]);
       [mxmlc] 					                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(384): col: 8 Error: Call to a possibly undefined method open.
       [mxmlc] 
       [mxmlc]  	    	super.open();
       [mxmlc]  	    	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(393): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function textInput_changeHandler(event:Event):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(417): col: 4 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]  		collection.filterFunction = templateFilterFunction;
       [mxmlc]  		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(418): col: 3 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 		collection.refresh();
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(426): col: 29 Error: Method marked override must override another method.
       [mxmlc] 
       [mxmlc]   	override public function close(event:Event = null):void
       [mxmlc]   	                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(428): col: 6 Error: Call to a possibly undefined method close.
       [mxmlc] 
       [mxmlc]     	super.close(event);
       [mxmlc]     	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(3): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(23): col: 16 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime = getTimer();
       [mxmlc] 			            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(28): col: 15 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			stopTime = getTimer();
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(6): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(24): col: 28 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public var viewReference:DisplayObject;
       [mxmlc] 		                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(88): col: 35 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function AssignView(view:DisplayObject):void
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(93): col: 39 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function getRefernceToView():DisplayObject
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(5): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(19): col: 51 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function handleShowProgressBar(container:DisplayObject):void{
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(24): col: 18 Error: Implicit coercion of a value with static type Object to a possibly unrelated type mx.core.IFlexDisplayObject.
       [mxmlc] 
       [mxmlc] 			popUpWindow = PopUpManager.createPopUp(container,fetchPopUpView,false);
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(40): col: 32 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (x > popUpWindow.parent.width - popUpWindow.width) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(41): col: 34 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					x = x - (popUpWindow.parent.width - popUpWindow.width);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(47): col: 32 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (y > popUpWindow.parent.height - popUpWindow.height) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(48): col: 34 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					y = y - (popUpWindow.parent.height - popUpWindow.height);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(10): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(11): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(19): col: 46 Error: The definition of base class EventDispatcher was not found.
       [mxmlc] 
       [mxmlc] 	public class FedExPresentationModel extends EventDispatcher implements IPresentationModel
       [mxmlc] 	                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(25): col: 49 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExPresentationModel(target:IEventDispatcher=null)
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(8): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(14): col: 48 Error: interface IEventDispatcher was not found.
       [mxmlc] 
       [mxmlc]    public interface IPresentationModel extends IEventDispatcher
       [mxmlc]                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(41): col: 29 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			_optionsDictionary = new Dictionary();
       [mxmlc] 			                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(13): col: 26 Warning: return value for function 'getValueFromJS' has no type declaration.
       [mxmlc] 
       [mxmlc] 		public static function getValueFromJS(jsExpr:String, defVal:String="") { // get value of given JS Expression
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(3): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(4): col: 9 Warning: Definition flash.display.DisplayObjectContainer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObjectContainer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(5): col: 9 Warning: Definition flash.text.TextFormat could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.text.TextFormat;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 63 Error: Type was not found or was not a compile-time constant: DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 87 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(12): col: 12 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var ret:DisplayObject  = null;
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(13): col: 14 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var child:DisplayObject = null;
       [mxmlc] 			          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(18): col: 25 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 				} else if (child is DisplayObjectContainer) {
       [mxmlc] 				                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(19): col: 46 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 					ret = getChildByIdRecursive(id,child as DisplayObjectContainer);
       [mxmlc] 					                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 22 Error: Type was not found or was not a compile-time constant: TextFormat.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 38 Error: Call to a possibly undefined method getTextFormat through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(43): col: 8 Error: Call to a possibly undefined method replaceText through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 				tf.replaceText(result.index, result.index + result[0].length, result[1]);
       [mxmlc] 				   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(46): col: 27 Error: Call to a possibly undefined method TextFormat.
       [mxmlc] 
       [mxmlc] 				tf.setTextFormat(	new TextFormat(	"GGSuperscript", 
       [mxmlc] 				                 	    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(11): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(12): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(50): col: 42 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrTexts4Comp(comp:DisplayObject, errTexts:ArrayCollection):void {
       [mxmlc] 		                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(54): col: 41 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrText4Comp(comp:DisplayObject, errTxt:String):void {
       [mxmlc] 		                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 54 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(75): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(112): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 23 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 40 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(17): col: 32 Error: Access of possibly undefined property ADDED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.ADDED, registerView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(18): col: 32 Error: Access of possibly undefined property REMOVED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.REMOVED, unregisterView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(3): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(10): col: 29 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var viewHelpers : Dictionary;      
       [mxmlc] 		                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(25): col: 22 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			viewHelpers = new Dictionary();
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FetchPopUpView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:TitleWindow 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\IFedExViewHelper.as(3): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(2): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(37): col: 23 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime								= getTimer();
       [mxmlc] 			         								  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(85): col: 27 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 				sections[name]						= getTimer();
       [mxmlc] 				              						  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(95): col: 86 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var logString:String 					= name + "	(" + getTimeDifferenceString(sections[name], getTimer()) + ")";
       [mxmlc] 			                     					          	                                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(124): col: 50 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var time:String				= numberFormatter.format(((getTimer() - startTime) / 1000));
       [mxmlc] 			               				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(45): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(ResultEvent.RESULT, resultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(46): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(FaultEvent.FAULT, faultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(3): col: 9 Warning: Definition flash.utils.escapeMultiByte could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.escapeMultiByte;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(4): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(629): col: 11 Error: Call to a possibly undefined method escapeMultiByte.
       [mxmlc] 
       [mxmlc] 			return flash.utils.escapeMultiByte(inValue);
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(710): col: 20 Error: Access of possibly undefined property validPatternChars through a reference with static type mx.formatters.PhoneFormatter.
       [mxmlc] 
       [mxmlc] 				phoneFormatter.validPatternChars				= "#-() ";
       [mxmlc] 				               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(738): col: 12 Error: Call to a possibly undefined method getQualifiedClassName.
       [mxmlc] 
       [mxmlc] 				return getQualifiedClassName(object);
       [mxmlc] 				       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] 15.846897 seconds
   
   BUILD FAILED
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:51: The following error occurred while executing this line:
   D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\build.xml:75: mxmlc task failed.
   
   Total time: 19 seconds
   `
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] aharui commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-645152081


   You shouldn't need to change ArrayCollection to ArrayList.  And thus you can still use Sort/SortField.  What documentation suggested not using ArrayCollection?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-648048969


   Ok Thank you. Dictionary i was able to replace with ObjectMap.
   
   I can see so many place collection variable is used without declaring. Any idea what could be it? Im just pasting mxml where it is used.
   
   <?xml version="1.0" encoding="utf-8"?>
   <mx:ComboBox xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.apache.org/royale/mx">
   	<fx:Script>
   		<![CDATA[
   		//custom combo box with support to select an item by a given property value match
   
   			import mx.collections.IViewCursor;
   		 	import mx.controls.ComboBox;
   			public var valueField:String = "value";
   			/**
   			 *  lookup the item whose value equals the passed one, and set it as selected
   			 */
   			public function set selectedValue(value:Object):void
   			{
   				if (**collection** && **collection**.length)
   				{
   					var cursor:IViewCursor = **collection**.createCursor();
   					while (!cursor.afterLast)
   					{
   						var obj:Object = cursor.current;
   						if (obj[valueField] == value && obj[labelField]!=null) {
   							super.selectedItem = obj;
   							return;
   						}
   						cursor.moveNext();
   					}
   				}
   				super.selectedIndex = 0;
   			}
   			public function get selectedValue():Object
   			{
   				return super.selectedItem[valueField];
   			}			
   			
   			public function preserveDecimalLabelFn(item:Object):String {
   				var lbl:String = item.label as String;
   				if (lbl == null && !isNaN(item.label)) { // if it was taken as number
   					if (parseInt(item.label)==item.label) { // if number is int (.0 is taken out)
   						lbl = item.label+".0"; // add it
   					} else {
   						lbl = item.label+""; // else just convert back to string
   					}
   				}
   				return lbl;
   			}
   		]]>
   	</fx:Script>
   
   </mx:ComboBox>
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643239887


   Yes Im using VS Code. I just installed AS3 pluggin.
   
   mx.binding.utils.BindingUtils is still failing with a warning. import mx.external.ExternalInterface I did import, previous error is gone, but i can see ExternalInterface is failing following is my compilation output.
     ` [mxmlc] D:\<fakepath>WGRTFLEX/../WGRTFLEX/src/WGRTFLEX.mxml
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(40): col: 11 Warning: Definition mx.binding.utils.BindingUtils could not be found.
       [mxmlc] 
       [mxmlc] 			import mx.binding.utils.BindingUtils;
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(149): col: 10 Error: Access of possibly undefined property verticalScrollPosition through a reference with static type WGRTFLEX.
       [mxmlc] 
       [mxmlc] 				this.verticalScrollPosition = 0;
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(178): col: 25 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:Text width="100%" link="{loginHereClicked(event)}" styleName="purpleTextBold" 
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(188): col: 27 Warning: Data binding will not be able to detect assignments to 'fcl_firstname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(188): col: 49 Warning: Data binding will not be able to detect assignments to 'fcl_lastname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(193): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		visible="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(194): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		includeInLayout="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheReadCommand.as(15): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheReadCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheUpdateCommand.as(16): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheUpdateCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(16): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(22): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(32): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(60): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\controller\ErrorMapWGRTFIApp.as(2): col: 1 Warning: declaration 'errorMapWGRTFIApp' will be scoped to the default namespace: WGRTFLEX: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] var errorMapWGRTFIApp:Array = [
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(19): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(20): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(21): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(22): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(25): col: 9 Warning: Definition mx.events.ResourceEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.events.ResourceEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(50): col: 9 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 		 	if (ExternalInterface.available) {
       [mxmlc] 		 	    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(51): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.addCallback("handleJS2FlexCall", handleJS2FlexCall);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 38 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 73 Error: Call to a possibly undefined method loadResourceModule through a reference with static type IResourceManager.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(98): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.COMPLETE, localeLoadedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(99): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.ERROR, localeLoadFailedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(106): col: 56 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadFailedHandler(event:ResourceEvent):void {
       [mxmlc]                                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(110): col: 52 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadedHandler(event:ResourceEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(129): col: 13 Warning: variable 'fi' has no type declaration.
       [mxmlc] 
       [mxmlc] 			for (var fi in fields) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(228): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handleLoginStatusChange",isLoggedIn);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(261): col: 36 Error: Access of possibly undefined property length.
       [mxmlc] 
       [mxmlc] 				lc = url.length>0 ? url.charAt(length-1) : "";
       [mxmlc] 				                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(344): col: 10 Warning: Duplicate variable definition: rateReq.
       [mxmlc] 
       [mxmlc] 					var rateReq:RateRequest = event.data.requestData;
       [mxmlc] 					    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(359): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handlePageSwitch",null, linkname, params);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(364): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handlePageSwitch",redirectURL, linkName, "");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(369): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPackageUrl(false), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(371): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPackageUrl(true), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(373): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createFCLLoginUrl(), "_self"); 
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(381): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createBOLUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(383): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPickupUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(385): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createInetUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(387): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createWdpaUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(391): col: 57 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createPackageUrl(isExprFrght:Boolean):URLRequest {
       [mxmlc] 		                                                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(395): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(398): col: 34 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createBOLUrl():URLRequest {
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(401): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(404): col: 37 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createPickupUrl():URLRequest {
       [mxmlc] 		                                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(407): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(410): col: 35 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createInetUrl():URLRequest {
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(413): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(416): col: 35 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createWdpaUrl():URLRequest {
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(419): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(426): col: 39 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLLoginUrl():URLRequest {
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(436): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(loginUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(439): col: 40 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLLogoutUrl():URLRequest {
       [mxmlc] 		                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(457): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(logoutUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(460): col: 44 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLAddAccountUrl():URLRequest {
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(470): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(loginUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(473): col: 40 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createMyProfileUrl():URLRequest {
       [mxmlc] 		                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(486): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(myProfileUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(590): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("showHide",true,"","wgrt.freightHistory.menu");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(594): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("showHide",true,"wgrt.freightHistory.menu","");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(602): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("handleNeedItFaster")
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(632): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("handleViewSwitch",viewName, map[2],titleValue);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: WGRTFIDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("wgrtfi").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\test\WGRTFIDelegateTest.as(13): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: WGRTFIDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(49): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF" verticalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(39): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\NonLoggedInAlert.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryDetailResultsView.mxml(41): col: 3 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:VBox		
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(46): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(57): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(36): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(46): col: 20 Warning: Data binding will not be able to detect assignments to '_workFlowManager'.
       [mxmlc] 
       [mxmlc] 		workFlowManager="{_workFlowManager}"
       [mxmlc] 		                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(47): col: 61 Warning: Data binding will not be able to detect assignments to 'rateHistoryPresentationModel'.
       [mxmlc] 
       [mxmlc] 		presentationModel="{ApplicationModel.getInstance().dataMap.rateHistoryPresentationModel}"
       [mxmlc] 		                                                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(52): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(70): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\ResultsView.mxml(51): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.TransitTimeView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(16): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(20): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(30): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(59): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(24): col: 9 Warning: Definition flash.events.TextEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.TextEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(25): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(26): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(32): col: 9 Warning: Definition mx.validators.ZipCodeValidator could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.validators.ZipCodeValidator;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(270): col: 18 Error: Call to a possibly undefined method ZipCodeValidator.
       [mxmlc] 
       [mxmlc] 			zipVObj = new ZipCodeValidator();
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(411): col: 14 Warning: Duplicate variable definition: i.
       [mxmlc] 
       [mxmlc] 				for (var i:int=0; i<5; i++) {
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(450): col: 9 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				if (ExternalInterface.available) {
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(451): col: 13 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 					return ExternalInterface.call("isInternetExplorer");
       [mxmlc] 					       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(461): col: 8 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			if (ExternalInterface.available) {
       [mxmlc] 			    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(462): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.addCallback("updateAddress", 
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(465): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("openOutlookContactsWindow",woasHost);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1835): col: 53 Error: Access of possibly undefined property text through a reference with static type EventTarget.
       [mxmlc] 
       [mxmlc]             zipVObj.validate(eventObj.currentTarget.text);
       [mxmlc]                                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1847): col: 52 Error: Type was not found or was not a compile-time constant: TextEvent.
       [mxmlc] 
       [mxmlc]         public function handleUrlLinkClicked(event:TextEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1848): col: 38 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc]         	flash.net.navigateToURL(new URLRequest(event.text), "_self");
       [mxmlc]         	                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1848): col: 10 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc]         	flash.net.navigateToURL(new URLRequest(event.text), "_self");
       [mxmlc]         	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("address").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(53): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(62): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(63): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(67): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 121 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 53 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 37 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(49): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(57): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(58): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 122 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 54 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 38 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\SelectionView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\baseheader\view\BaseHeader.mxml(22): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{toplevel.text.length > 0}" includeInLayout="{toplevel.text.length > 0}"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(14): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(18): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(28): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\control\RateHistoryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\control\RateHistoryEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateHistoryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(87): col: 13 Warning: Duplicate variable definition: svc.
       [mxmlc] 
       [mxmlc] 			for (var svc:int=0; svc < resultDetailsBySvcByLegAC.length; svc++) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(88): col: 9 Warning: Duplicate variable definition: currentSvcResultsAR.
       [mxmlc] 
       [mxmlc] 				var currentSvcResultsAR:ArrayCollection = resultDetailsBySvcByLegAC.getItemAt(svc) as ArrayCollection;
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(90): col: 9 Warning: Duplicate variable definition: o.
       [mxmlc] 
       [mxmlc] 				var o:Object = resultsAR.getItemAt(0);
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(169): col: 14 Warning: Duplicate variable definition: x.
       [mxmlc] 
       [mxmlc] 				for (var x:int = 0; x < surcharges.length; x++)
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(593): col: 9 Warning: Duplicate variable definition: displayResults.
       [mxmlc] 
       [mxmlc] 				var displayResults:ArrayCollection = new ArrayCollection();
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryPresentationModel.as(24): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryPresentationModel.as(938): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("goToFreight");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rateHistory").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(4): col: 12 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc]     import flash.external.ExternalInterface; 
       [mxmlc]            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(57): col: 22 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 if (!ExternalInterface.available) { 
       [mxmlc]                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(62): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(FUNCTION_GET_COOKIE); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(63): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(FUNCTION_SET_COOKIE); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(79): col: 31 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 this._value = ExternalInterface.call(GET_COOKIE, name) as String; 
       [mxmlc]                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(105): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(SET_COOKIE, this._name, this._value); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\GetRateHistoryView.mxml(75): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\LinkRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(60): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(62): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(67): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(75): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="4" paddingBottom="4" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(125): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(168): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(185): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox horizontalAlign="left" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" verticalGap="0" >		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\SortableHeaderRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(15): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(29): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(8): col: 45 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(23): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(24): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 23 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 22 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 4 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rate").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\GetRateView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button label="{resourceManager.getString('AllResources','common.getRatesAndTT')}" styleName="primaryButton" click="presentationModel.handleGetRate();"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 25 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 31 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 38 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(128): col: 65 Error: Type was not found or was not a compile-time constant: DataGridColumn.
       [mxmlc] 
       [mxmlc] 		    private function getResourceForString(item:Object, column:DataGridColumn):String
       [mxmlc] 		                                                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 17 Error: Type was not found or was not a compile-time constant: TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 33 Error: Call to a possibly undefined method TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(261): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(263): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId" width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(275): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(277): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(288): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(302): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{!presentationModel.isLoggedIn}" includeInLayout="{!presentationModel.isLoggedIn}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(308): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{presentationModel.showLoggedInMessage}" includeInLayout="{presentationModel.showLoggedInMessage}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(314): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="10" paddingRight="10" paddingTop="5" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(327): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" id="hbox1" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(485): col: 4 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]    <mx:HBox id="hbox3" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" >
       [mxmlc]    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(8): col: 56 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function ShipmentSummaryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(91): col: 10 Error: Access of possibly undefined property parentDocument through a reference with static type ShipmentSummaryView.
       [mxmlc] 
       [mxmlc] 				this.parentDocument.rateResultsView.print();
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(95): col: 5 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]     <mx:DateFormatter id="dateFormatter" 
       [mxmlc]     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(98): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(110): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(113): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="TransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(115): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(133): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="MultiTransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(135): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(153): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="RatesAndTransitState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(155): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(15): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(29): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function TransitTimeEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: TransitTimeDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(7): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(27): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("transitTime").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\test\TransitTimeDelegateTest.as(20): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: TransitTimeDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetMultiTransitTimeView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalAlign="left" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetTransitTimeView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button enabled="{presentationModel.enableTransitTimeButton}"  label="{resourceManager.getString('AllResources','common.getTT')}" styleName="secondaryButton1" click="presentationModel.handleGetTransitTime();"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(13): col: 25 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _services:Dictionary;
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(14): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _properties:Dictionary;
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(44): col: 26 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._services = new Dictionary();
       [mxmlc] 				                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(61): col: 28 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._properties = new Dictionary();
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 35 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 52 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 38 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 55 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 32 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 49 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(8): col: 9 Warning: Definition flash.utils.describeType could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.describeType;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(9): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(88): col: 38 Error: Call to a possibly undefined method describeType.
       [mxmlc] 
       [mxmlc]          	var classDescription:XML = describeType(commandReference) as XML;
       [mxmlc]          	                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(5): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(18): col: 4 Error: Incorrect number of arguments.  Expected no more than 2
       [mxmlc] 
       [mxmlc] 			super(type, bubbles, cancelable );
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(51): col: 3 Error: A conflict exists with inherited definition source in class Event.
       [mxmlc] 
       [mxmlc] 		public function set source(source:IPresentationModel):void {
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(3): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(8): col: 34 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		private var iEventDispatcher : IEventDispatcher;
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(13): col: 53 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExEventBroadcaster(eventTarget:IEventDispatcher = null)
       [mxmlc] 		                                                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(15): col: 27 Error: Call to a possibly undefined method EventDispatcher.
       [mxmlc] 
       [mxmlc] 			iEventDispatcher = new EventDispatcher(eventTarget);
       [mxmlc] 			                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(4): col: 8 Warning: Definition flash.events.KeyboardEvent could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.KeyboardEvent;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(5): col: 8 Warning: Definition flash.ui.Keyboard could not be found.
       [mxmlc] 
       [mxmlc] import flash.ui.Keyboard;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(65): col: 38 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]         this.addEventListener( Event.RENDER, onRender );
       [mxmlc]                                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(75): col: 42 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]          this.removeEventListener( Event.RENDER, onRender );
       [mxmlc]                                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(281): col: 13 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]   			    if(collection.length==0 || getTypedText()==""|| getTypedText()==null)
       [mxmlc]   			       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(295): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function keyDownHandler(event:KeyboardEvent):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(304): col: 27 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.keyCode == Keyboard.UP && prevIndex==0)
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(310): col: 30 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    else if(event.keyCode==Keyboard.ESCAPE && showingDropdown)
       [mxmlc] 		                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(317): col: 43 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			else if(lookAhead && event.keyCode ==  Keyboard.BACKSPACE 
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(318): col: 24 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			|| event.keyCode == Keyboard.DELETE)
       [mxmlc] 			                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(322): col: 44 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.ctrlKey && event.keyCode == Keyboard.UP)
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(354): col: 37 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 					var label:String = itemToLabel(collection[0]);
       [mxmlc] 					                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(384): col: 8 Error: Call to a possibly undefined method open.
       [mxmlc] 
       [mxmlc]  	    	super.open();
       [mxmlc]  	    	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(393): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function textInput_changeHandler(event:Event):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(417): col: 4 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]  		collection.filterFunction = templateFilterFunction;
       [mxmlc]  		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(418): col: 3 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 		collection.refresh();
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(426): col: 29 Error: Method marked override must override another method.
       [mxmlc] 
       [mxmlc]   	override public function close(event:Event = null):void
       [mxmlc]   	                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(428): col: 6 Error: Call to a possibly undefined method close.
       [mxmlc] 
       [mxmlc]     	super.close(event);
       [mxmlc]     	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(3): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(23): col: 16 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime = getTimer();
       [mxmlc] 			            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(28): col: 15 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			stopTime = getTimer();
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(6): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(24): col: 28 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public var viewReference:DisplayObject;
       [mxmlc] 		                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(88): col: 35 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function AssignView(view:DisplayObject):void
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(93): col: 39 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function getRefernceToView():DisplayObject
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(5): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(6): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(19): col: 51 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function handleShowProgressBar(container:DisplayObject):void{
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(24): col: 18 Error: Implicit coercion of a value with static type Object to a possibly unrelated type mx.core.IFlexDisplayObject.
       [mxmlc] 
       [mxmlc] 			popUpWindow = PopUpManager.createPopUp(container,fetchPopUpView,false);
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(32): col: 39 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			var browserScrollTop:int= parseInt(ExternalInterface.call("getBrowserScrollTop"));
       [mxmlc] 			                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(33): col: 43 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 		    var browserScrollLeft:int= parseInt(ExternalInterface.call("getBrowserScrollLeft"));
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(40): col: 32 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (x > popUpWindow.parent.width - popUpWindow.width) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(41): col: 34 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					x = x - (popUpWindow.parent.width - popUpWindow.width);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(47): col: 32 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (y > popUpWindow.parent.height - popUpWindow.height) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(48): col: 34 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					y = y - (popUpWindow.parent.height - popUpWindow.height);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(10): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(11): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(12): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(19): col: 46 Error: The definition of base class EventDispatcher was not found.
       [mxmlc] 
       [mxmlc] 	public class FedExPresentationModel extends EventDispatcher implements IPresentationModel
       [mxmlc] 	                                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(25): col: 49 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExPresentationModel(target:IEventDispatcher=null)
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(159): col: 26 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			var isReady:Boolean = ExternalInterface.call("openWin",sURL);
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(8): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(14): col: 48 Error: interface IEventDispatcher was not found.
       [mxmlc] 
       [mxmlc]    public interface IPresentationModel extends IEventDispatcher
       [mxmlc]                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(41): col: 29 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			_optionsDictionary = new Dictionary();
       [mxmlc] 			                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(3): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(13): col: 26 Warning: return value for function 'getValueFromJS' has no type declaration.
       [mxmlc] 
       [mxmlc] 		public static function getValueFromJS(jsExpr:String, defVal:String="") { // get value of given JS Expression
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(16): col: 14 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				retVal = ExternalInterface.call(jsExpr);
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(3): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(4): col: 9 Warning: Definition flash.display.DisplayObjectContainer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObjectContainer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(5): col: 9 Warning: Definition flash.text.TextFormat could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.text.TextFormat;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 63 Error: Type was not found or was not a compile-time constant: DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 87 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(12): col: 12 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var ret:DisplayObject  = null;
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(13): col: 14 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var child:DisplayObject = null;
       [mxmlc] 			          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(18): col: 25 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 				} else if (child is DisplayObjectContainer) {
       [mxmlc] 				                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(19): col: 46 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 					ret = getChildByIdRecursive(id,child as DisplayObjectContainer);
       [mxmlc] 					                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 22 Error: Type was not found or was not a compile-time constant: TextFormat.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 38 Error: Call to a possibly undefined method getTextFormat through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(43): col: 8 Error: Call to a possibly undefined method replaceText through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 				tf.replaceText(result.index, result.index + result[0].length, result[1]);
       [mxmlc] 				   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(46): col: 27 Error: Call to a possibly undefined method TextFormat.
       [mxmlc] 
       [mxmlc] 				tf.setTextFormat(	new TextFormat(	"GGSuperscript", 
       [mxmlc] 				                 	    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(11): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(12): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(50): col: 42 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrTexts4Comp(comp:DisplayObject, errTexts:ArrayCollection):void {
       [mxmlc] 		                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(54): col: 41 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrText4Comp(comp:DisplayObject, errTxt:String):void {
       [mxmlc] 		                                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 54 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(75): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(112): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 23 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 40 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(17): col: 32 Error: Access of possibly undefined property ADDED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.ADDED, registerView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(18): col: 32 Error: Access of possibly undefined property REMOVED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.REMOVED, unregisterView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(3): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(10): col: 29 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var viewHelpers : Dictionary;      
       [mxmlc] 		                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(25): col: 22 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			viewHelpers = new Dictionary();
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FetchPopUpView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:TitleWindow 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\IFedExViewHelper.as(3): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(2): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(37): col: 23 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime								= getTimer();
       [mxmlc] 			         								  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(85): col: 27 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 				sections[name]						= getTimer();
       [mxmlc] 				              						  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(95): col: 86 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var logString:String 					= name + "	(" + getTimeDifferenceString(sections[name], getTimer()) + ")";
       [mxmlc] 			                     					          	                                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(124): col: 50 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var time:String				= numberFormatter.format(((getTimer() - startTime) / 1000));
       [mxmlc] 			               				                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(45): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(ResultEvent.RESULT, resultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(46): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(FaultEvent.FAULT, faultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(2): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(3): col: 9 Warning: Definition flash.utils.escapeMultiByte could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.escapeMultiByte;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(4): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(629): col: 11 Error: Call to a possibly undefined method escapeMultiByte.
       [mxmlc] 
       [mxmlc] 			return flash.utils.escapeMultiByte(inValue);
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(653): col: 34 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var qs:String 						= fRight(ExternalInterface.call("window.location.href.toString"), "?");
       [mxmlc] 				              						         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(710): col: 20 Error: Access of possibly undefined property validPatternChars through a reference with static type mx.formatters.PhoneFormatter.
       [mxmlc] 
       [mxmlc] 				phoneFormatter.validPatternChars				= "#-() ";
       [mxmlc] 				               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(738): col: 12 Error: Call to a possibly undefined method getQualifiedClassName.
       [mxmlc] 
       [mxmlc] 				return getQualifiedClassName(object);
       [mxmlc] 				       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] 13.6824251 seconds
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
   `
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] aharui commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643081495


   mx:Script should be replaced by fx:Script
   mx:Style should be replaced by fx:Style
   mx:Metadata should be replaced by fx:Metadata
   
   In Flex 4 and Royale, Script, Style and Metadata are considered language tags and thus start with fx.  Other components like mx:Box remain with the mx prefix to denote what component set they come from.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] Harbs commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
Harbs commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643168846


   Are you using an IDE? VS Code and Moonshine should both be able to help find and fix these errors.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643239887


   Yes Im using VS Code. I just installed AS3 pluggin.
   
   mx.binding.utils.BindingUtils is still failing with a warning. import mx.external.ExternalInterface I did import, previous error is gone, but i can see ExternalInterface is failing following is my compilation output.
   `   [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/src/WGRTFLEX.mxml
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(40): col: 11 Warning: Definition mx.binding.utils.BindingUtils could not be found.
       [mxmlc] 
       [mxmlc] 			import mx.binding.utils.BindingUtils;
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(149): col: 10 Error: Access of possibly undefined property verticalScrollPosition through a reference with static type WGRTFLEX.
       [mxmlc] 
       [mxmlc] 				this.verticalScrollPosition = 0;
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(178): col: 25 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:Text width="100%" link="{loginHereClicked(event)}" styleName="purpleTextBold" 
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 27 Warning: Data binding will not be able to detect assignments to 'fcl_firstname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(188): col: 49 Warning: Data binding will not be able to detect assignments to 'fcl_lastname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(193): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		visible="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(194): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		includeInLayout="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheReadCommand.as(15): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheReadCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheUpdateCommand.as(16): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheUpdateCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(16): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(22): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(32): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(60): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\controller\ErrorMapWGRTFIApp.as(2): col: 1 Warning: declaration 'errorMapWGRTFIApp' will be scoped to the default namespace: WGRTFLEX: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] var errorMapWGRTFIApp:Array = [
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(19): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(20): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(21): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(22): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(25): col: 9 Warning: Definition mx.events.ResourceEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.events.ResourceEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(50): col: 9 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 		 	if (ExternalInterface.available) {
       [mxmlc] 		 	    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(51): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.addCallback("handleJS2FlexCall", handleJS2FlexCall);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 38 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 73 Error: Call to a possibly undefined method loadResourceModule through a reference with static type IResourceManager.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(98): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.COMPLETE, localeLoadedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(99): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.ERROR, localeLoadFailedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(106): col: 56 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadFailedHandler(event:ResourceEvent):void {
       [mxmlc]                                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(110): col: 52 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadedHandler(event:ResourceEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(129): col: 13 Warning: variable 'fi' has no type declaration.
       [mxmlc] 
       [mxmlc] 			for (var fi in fields) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(228): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handleLoginStatusChange",isLoggedIn);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(261): col: 36 Error: Access of possibly undefined property length.
       [mxmlc] 
       [mxmlc] 				lc = url.length>0 ? url.charAt(length-1) : "";
       [mxmlc] 				                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(344): col: 10 Warning: Duplicate variable definition: rateReq.
       [mxmlc] 
       [mxmlc] 					var rateReq:RateRequest = event.data.requestData;
       [mxmlc] 					    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(359): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handlePageSwitch",null, linkname, params);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(364): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handlePageSwitch",redirectURL, linkName, "");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(369): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPackageUrl(false), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(371): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPackageUrl(true), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(373): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createFCLLoginUrl(), "_self"); 
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(381): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createBOLUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(383): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPickupUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(385): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createInetUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(387): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createWdpaUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(391): col: 57 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createPackageUrl(isExprFrght:Boolean):URLRequest {
       [mxmlc] 		                                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(395): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(398): col: 34 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createBOLUrl():URLRequest {
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(401): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(404): col: 37 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createPickupUrl():URLRequest {
       [mxmlc] 		                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(407): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(410): col: 35 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createInetUrl():URLRequest {
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(413): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(416): col: 35 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createWdpaUrl():URLRequest {
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(419): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(426): col: 39 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLLoginUrl():URLRequest {
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(436): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(loginUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(439): col: 40 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLLogoutUrl():URLRequest {
       [mxmlc] 		                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(457): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(logoutUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(460): col: 44 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLAddAccountUrl():URLRequest {
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(470): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(loginUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(473): col: 40 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createMyProfileUrl():URLRequest {
       [mxmlc] 		                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(486): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(myProfileUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(590): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("showHide",true,"","wgrt.freightHistory.menu");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(594): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("showHide",true,"wgrt.freightHistory.menu","");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(602): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("handleNeedItFaster")
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(632): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("handleViewSwitch",viewName, map[2],titleValue);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: WGRTFIDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("wgrtfi").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\test\WGRTFIDelegateTest.as(13): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: WGRTFIDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(49): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF" verticalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(39): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\NonLoggedInAlert.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryDetailResultsView.mxml(41): col: 3 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:VBox		
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(46): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(57): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(36): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(46): col: 20 Warning: Data binding will not be able to detect assignments to '_workFlowManager'.
       [mxmlc] 
       [mxmlc] 		workFlowManager="{_workFlowManager}"
       [mxmlc] 		                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(47): col: 61 Warning: Data binding will not be able to detect assignments to 'rateHistoryPresentationModel'.
       [mxmlc] 
       [mxmlc] 		presentationModel="{ApplicationModel.getInstance().dataMap.rateHistoryPresentationModel}"
       [mxmlc] 		                                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(52): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(70): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\ResultsView.mxml(51): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.TransitTimeView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(16): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(20): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(30): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(59): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(24): col: 9 Warning: Definition flash.events.TextEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.TextEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(25): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(26): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(32): col: 9 Warning: Definition mx.validators.ZipCodeValidator could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.validators.ZipCodeValidator;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(270): col: 18 Error: Call to a possibly undefined method ZipCodeValidator.
       [mxmlc] 
       [mxmlc] 			zipVObj = new ZipCodeValidator();
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(411): col: 14 Warning: Duplicate variable definition: i.
       [mxmlc] 
       [mxmlc] 				for (var i:int=0; i<5; i++) {
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(450): col: 9 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				if (ExternalInterface.available) {
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(451): col: 13 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 					return ExternalInterface.call("isInternetExplorer");
       [mxmlc] 					       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(461): col: 8 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			if (ExternalInterface.available) {
       [mxmlc] 			    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(462): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.addCallback("updateAddress", 
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(465): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("openOutlookContactsWindow",woasHost);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1835): col: 53 Error: Access of possibly undefined property text through a reference with static type EventTarget.
       [mxmlc] 
       [mxmlc]             zipVObj.validate(eventObj.currentTarget.text);
       [mxmlc]                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1847): col: 52 Error: Type was not found or was not a compile-time constant: TextEvent.
       [mxmlc] 
       [mxmlc]         public function handleUrlLinkClicked(event:TextEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1848): col: 38 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc]         	flash.net.navigateToURL(new URLRequest(event.text), "_self");
       [mxmlc]         	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1848): col: 10 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc]         	flash.net.navigateToURL(new URLRequest(event.text), "_self");
       [mxmlc]         	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("address").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(53): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(62): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(63): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(67): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 121 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 53 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 37 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(49): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(57): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(58): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 122 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 54 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 38 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\address\view\SelectionView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\baseheader\view\BaseHeader.mxml(22): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{toplevel.text.length > 0}" includeInLayout="{toplevel.text.length > 0}"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(14): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(18): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(28): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\control\RateHistoryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\control\RateHistoryEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateHistoryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(87): col: 13 Warning: Duplicate variable definition: svc.
       [mxmlc] 
       [mxmlc] 			for (var svc:int=0; svc < resultDetailsBySvcByLegAC.length; svc++) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(88): col: 9 Warning: Duplicate variable definition: currentSvcResultsAR.
       [mxmlc] 
       [mxmlc] 				var currentSvcResultsAR:ArrayCollection = resultDetailsBySvcByLegAC.getItemAt(svc) as ArrayCollection;
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(90): col: 9 Warning: Duplicate variable definition: o.
       [mxmlc] 
       [mxmlc] 				var o:Object = resultsAR.getItemAt(0);
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(169): col: 14 Warning: Duplicate variable definition: x.
       [mxmlc] 
       [mxmlc] 				for (var x:int = 0; x < surcharges.length; x++)
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(593): col: 9 Warning: Duplicate variable definition: displayResults.
       [mxmlc] 
       [mxmlc] 				var displayResults:ArrayCollection = new ArrayCollection();
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryPresentationModel.as(24): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryPresentationModel.as(938): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("goToFreight");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rateHistory").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(4): col: 12 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc]     import flash.external.ExternalInterface; 
       [mxmlc]            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(57): col: 22 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 if (!ExternalInterface.available) { 
       [mxmlc]                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(62): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(FUNCTION_GET_COOKIE); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(63): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(FUNCTION_SET_COOKIE); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(79): col: 31 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 this._value = ExternalInterface.call(GET_COOKIE, name) as String; 
       [mxmlc]                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(105): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(SET_COOKIE, this._name, this._value); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\GetRateHistoryView.mxml(75): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\LinkRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(60): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(62): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(67): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(75): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="4" paddingBottom="4" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(125): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(168): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(185): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox horizontalAlign="left" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" verticalGap="0" >		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\SortableHeaderRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(15): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(29): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(8): col: 45 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(23): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(24): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 23 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 22 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 4 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rate").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\GetRateView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button label="{resourceManager.getString('AllResources','common.getRatesAndTT')}" styleName="primaryButton" click="presentationModel.handleGetRate();"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 25 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 31 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 38 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(128): col: 65 Error: Type was not found or was not a compile-time constant: DataGridColumn.
       [mxmlc] 
       [mxmlc] 		    private function getResourceForString(item:Object, column:DataGridColumn):String
       [mxmlc] 		                                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 17 Error: Type was not found or was not a compile-time constant: TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 33 Error: Call to a possibly undefined method TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(261): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(263): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId" width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(275): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(277): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(288): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(302): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{!presentationModel.isLoggedIn}" includeInLayout="{!presentationModel.isLoggedIn}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(308): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{presentationModel.showLoggedInMessage}" includeInLayout="{presentationModel.showLoggedInMessage}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(314): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="10" paddingRight="10" paddingTop="5" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(327): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" id="hbox1" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(485): col: 4 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]    <mx:HBox id="hbox3" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" >
       [mxmlc]    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(8): col: 56 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function ShipmentSummaryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(91): col: 10 Error: Access of possibly undefined property parentDocument through a reference with static type ShipmentSummaryView.
       [mxmlc] 
       [mxmlc] 				this.parentDocument.rateResultsView.print();
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(95): col: 5 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]     <mx:DateFormatter id="dateFormatter" 
       [mxmlc]     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(98): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(110): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(113): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="TransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(115): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(133): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="MultiTransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(135): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(153): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="RatesAndTransitState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(155): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(15): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(29): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function TransitTimeEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: TransitTimeDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(7): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(27): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("transitTime").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\service\test\TransitTimeDelegateTest.as(20): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: TransitTimeDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetMultiTransitTimeView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalAlign="left" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetTransitTimeView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button enabled="{presentationModel.enableTransitTimeButton}"  label="{resourceManager.getString('AllResources','common.getTT')}" styleName="secondaryButton1" click="presentationModel.handleGetTransitTime();"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(13): col: 25 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _services:Dictionary;
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(14): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _properties:Dictionary;
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(44): col: 26 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._services = new Dictionary();
       [mxmlc] 				                     ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(61): col: 28 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._properties = new Dictionary();
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 35 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 52 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 38 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 55 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 32 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 49 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(8): col: 9 Warning: Definition flash.utils.describeType could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.describeType;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(9): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(88): col: 38 Error: Call to a possibly undefined method describeType.
       [mxmlc] 
       [mxmlc]          	var classDescription:XML = describeType(commandReference) as XML;
       [mxmlc]          	                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(5): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(18): col: 4 Error: Incorrect number of arguments.  Expected no more than 2
       [mxmlc] 
       [mxmlc] 			super(type, bubbles, cancelable );
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(51): col: 3 Error: A conflict exists with inherited definition source in class Event.
       [mxmlc] 
       [mxmlc] 		public function set source(source:IPresentationModel):void {
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(3): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(8): col: 34 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		private var iEventDispatcher : IEventDispatcher;
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(13): col: 53 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExEventBroadcaster(eventTarget:IEventDispatcher = null)
       [mxmlc] 		                                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(15): col: 27 Error: Call to a possibly undefined method EventDispatcher.
       [mxmlc] 
       [mxmlc] 			iEventDispatcher = new EventDispatcher(eventTarget);
       [mxmlc] 			                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(4): col: 8 Warning: Definition flash.events.KeyboardEvent could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.KeyboardEvent;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(5): col: 8 Warning: Definition flash.ui.Keyboard could not be found.
       [mxmlc] 
       [mxmlc] import flash.ui.Keyboard;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(65): col: 38 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]         this.addEventListener( Event.RENDER, onRender );
       [mxmlc]                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(75): col: 42 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]          this.removeEventListener( Event.RENDER, onRender );
       [mxmlc]                                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(281): col: 13 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]   			    if(collection.length==0 || getTypedText()==""|| getTypedText()==null)
       [mxmlc]   			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(295): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function keyDownHandler(event:KeyboardEvent):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(304): col: 27 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.keyCode == Keyboard.UP && prevIndex==0)
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(310): col: 30 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    else if(event.keyCode==Keyboard.ESCAPE && showingDropdown)
       [mxmlc] 		                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(317): col: 43 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			else if(lookAhead && event.keyCode ==  Keyboard.BACKSPACE 
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(318): col: 24 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			|| event.keyCode == Keyboard.DELETE)
       [mxmlc] 			                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(322): col: 44 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.ctrlKey && event.keyCode == Keyboard.UP)
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(354): col: 37 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 					var label:String = itemToLabel(collection[0]);
       [mxmlc] 					                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(384): col: 8 Error: Call to a possibly undefined method open.
       [mxmlc] 
       [mxmlc]  	    	super.open();
       [mxmlc]  	    	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(393): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function textInput_changeHandler(event:Event):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(417): col: 4 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]  		collection.filterFunction = templateFilterFunction;
       [mxmlc]  		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(418): col: 3 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 		collection.refresh();
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(426): col: 29 Error: Method marked override must override another method.
       [mxmlc] 
       [mxmlc]   	override public function close(event:Event = null):void
       [mxmlc]   	                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(428): col: 6 Error: Call to a possibly undefined method close.
       [mxmlc] 
       [mxmlc]     	super.close(event);
       [mxmlc]     	^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(3): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(23): col: 16 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime = getTimer();
       [mxmlc] 			            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(28): col: 15 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			stopTime = getTimer();
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(6): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(24): col: 28 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public var viewReference:DisplayObject;
       [mxmlc] 		                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(88): col: 35 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function AssignView(view:DisplayObject):void
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(93): col: 39 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function getRefernceToView():DisplayObject
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(5): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(6): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(19): col: 51 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function handleShowProgressBar(container:DisplayObject):void{
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(24): col: 18 Error: Implicit coercion of a value with static type Object to a possibly unrelated type mx.core.IFlexDisplayObject.
       [mxmlc] 
       [mxmlc] 			popUpWindow = PopUpManager.createPopUp(container,fetchPopUpView,false);
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(32): col: 39 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			var browserScrollTop:int= parseInt(ExternalInterface.call("getBrowserScrollTop"));
       [mxmlc] 			                                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(33): col: 43 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 		    var browserScrollLeft:int= parseInt(ExternalInterface.call("getBrowserScrollLeft"));
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(40): col: 32 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (x > popUpWindow.parent.width - popUpWindow.width) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(41): col: 34 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					x = x - (popUpWindow.parent.width - popUpWindow.width);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(47): col: 32 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (y > popUpWindow.parent.height - popUpWindow.height) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(48): col: 34 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					y = y - (popUpWindow.parent.height - popUpWindow.height);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(10): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(11): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(12): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(19): col: 46 Error: The definition of base class EventDispatcher was not found.
       [mxmlc] 
       [mxmlc] 	public class FedExPresentationModel extends EventDispatcher implements IPresentationModel
       [mxmlc] 	                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(25): col: 49 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExPresentationModel(target:IEventDispatcher=null)
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(159): col: 26 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			var isReady:Boolean = ExternalInterface.call("openWin",sURL);
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(8): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(14): col: 48 Error: interface IEventDispatcher was not found.
       [mxmlc] 
       [mxmlc]    public interface IPresentationModel extends IEventDispatcher
       [mxmlc]                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(41): col: 29 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			_optionsDictionary = new Dictionary();
       [mxmlc] 			                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(3): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(13): col: 26 Warning: return value for function 'getValueFromJS' has no type declaration.
       [mxmlc] 
       [mxmlc] 		public static function getValueFromJS(jsExpr:String, defVal:String="") { // get value of given JS Expression
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(16): col: 14 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				retVal = ExternalInterface.call(jsExpr);
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(3): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(4): col: 9 Warning: Definition flash.display.DisplayObjectContainer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObjectContainer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(5): col: 9 Warning: Definition flash.text.TextFormat could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.text.TextFormat;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 63 Error: Type was not found or was not a compile-time constant: DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 87 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(12): col: 12 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var ret:DisplayObject  = null;
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(13): col: 14 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var child:DisplayObject = null;
       [mxmlc] 			          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(18): col: 25 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 				} else if (child is DisplayObjectContainer) {
       [mxmlc] 				                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(19): col: 46 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 					ret = getChildByIdRecursive(id,child as DisplayObjectContainer);
       [mxmlc] 					                                        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 22 Error: Type was not found or was not a compile-time constant: TextFormat.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 38 Error: Call to a possibly undefined method getTextFormat through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(43): col: 8 Error: Call to a possibly undefined method replaceText through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 				tf.replaceText(result.index, result.index + result[0].length, result[1]);
       [mxmlc] 				   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(46): col: 27 Error: Call to a possibly undefined method TextFormat.
       [mxmlc] 
       [mxmlc] 				tf.setTextFormat(	new TextFormat(	"GGSuperscript", 
       [mxmlc] 				                 	    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(11): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(12): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(50): col: 42 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrTexts4Comp(comp:DisplayObject, errTexts:ArrayCollection):void {
       [mxmlc] 		                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(54): col: 41 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrText4Comp(comp:DisplayObject, errTxt:String):void {
       [mxmlc] 		                                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 54 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                                                 ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(75): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(112): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 23 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 40 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                                    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(17): col: 32 Error: Access of possibly undefined property ADDED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.ADDED, registerView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(18): col: 32 Error: Access of possibly undefined property REMOVED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.REMOVED, unregisterView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(3): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(10): col: 29 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var viewHelpers : Dictionary;      
       [mxmlc] 		                          ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(25): col: 22 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			viewHelpers = new Dictionary();
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\FetchPopUpView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:TitleWindow 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\framework\view\IFedExViewHelper.as(3): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(2): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(37): col: 23 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime								= getTimer();
       [mxmlc] 			         								  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(85): col: 27 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 				sections[name]						= getTimer();
       [mxmlc] 				              						  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(95): col: 86 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var logString:String 					= name + "	(" + getTimeDifferenceString(sections[name], getTimer()) + ")";
       [mxmlc] 			                     					          	                                             ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(124): col: 50 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var time:String				= numberFormatter.format(((getTimer() - startTime) / 1000));
       [mxmlc] 			               				                           ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(45): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(ResultEvent.RESULT, resultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(46): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(FaultEvent.FAULT, faultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(2): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(3): col: 9 Warning: Definition flash.utils.escapeMultiByte could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.escapeMultiByte;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(4): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(629): col: 11 Error: Call to a possibly undefined method escapeMultiByte.
       [mxmlc] 
       [mxmlc] 			return flash.utils.escapeMultiByte(inValue);
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(653): col: 34 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var qs:String 						= fRight(ExternalInterface.call("window.location.href.toString"), "?");
       [mxmlc] 				              						         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(710): col: 20 Error: Access of possibly undefined property validPatternChars through a reference with static type mx.formatters.PhoneFormatter.
       [mxmlc] 
       [mxmlc] 				phoneFormatter.validPatternChars				= "#-() ";
       [mxmlc] 				               ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(738): col: 12 Error: Call to a possibly undefined method getQualifiedClassName.
       [mxmlc] 
       [mxmlc] 				return getQualifiedClassName(object);
       [mxmlc] 				       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] 13.6824251 seconds
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] Harbs commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
Harbs commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643346656


   You need to remove all flash import references.
   `flash.external.ExternalInterface` should be `mx.external.ExternalInterface`
   `flash.events.IEventDispatcher` should be org.apache.royale.events.IEventDispatcher`
   etc.
   Not sure why you're getting an error with `import mx.binding.utils.BindingUtils` Are you sure your are using a "flex" config?
   
   The easiest way to fix imports is to delete the "not found" imports, then go to the reference of the missing class and let VS Code give you code intelligence for the available matching classes to pull in the imports via code intelligence.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-647922580


   fx: is failing. Below is the code.
   `<mx:HBox width="100%" verticalGap="0" paddingBottom="0" visible="{commodityModel.showCommodityTable}" includeInLayout="{commodityModel.showCommodityTable}" >
   			<mx:Spacer width="15" />
   			<mx:DataGrid
   				id="commodityDG"
   				rowCount="{commodityModel.commodityList.length}" 
   				dataProvider="{commodityModel.commodityList}"
   				selectable="true"
   				rowHeight="{commodityModel.commodityTableRowHeight}"
   				variableRowHeight="false"
   				verticalScrollPolicy="off"> 
   			 	<mx:columns >
   			 		<mx:DataGridColumn width="30" sortable="false" editorDataField="seclected" resizable="false" rendererIsEditor="true" textAlign="center" >
   			 			<mx:headerRenderer >
   			 				<mx:Component id="commodityTableHeaderCheckbox" >
   			 					<mx:CheckBox selected="{outerDocument.commodityModel.headerCheckboxSelected}" click="{outerDocument.commodityModel.handleTableHeaderCheckboxAction(this.selected)}" />
   			 				</mx:Component>
   			 			</mx:headerRenderer>
   			 			<mx:itemRenderer >
   			 				<mx:Component >
   			 					<mx:CheckBox selected="{data.isSelected}"  paddingLeft="8" click="{outerDocument.commodityTableRowCheckBoxAction(this.selected)}"  />
   			 				</mx:Component>
   			 			</mx:itemRenderer>
   			 		</mx:DataGridColumn>
   			 		<mx:DataGridColumn dataField="name" width="368" sortable="false" resizable="false" rendererIsEditor="true" textAlign="center"  >
   			 			<mx:headerRenderer >
   			 				<mx:Component >
   			 					<mx:Label text="{resourceManager.getString('AllResources','commodity.name')}" />
   			 				</mx:Component>
   			 			</mx:headerRenderer>
   			 			<mx:itemRenderer >
   			 				<mx:Component >
   			 					<mx:TextArea backgroundAlpha="0" editable="false" selectable="false" wordWrap="true" text="{data.displayName}" textAlign="left"  />
   			 				</mx:Component>
   			 			</mx:itemRenderer>
   			 		</mx:DataGridColumn>
   			 		<mx:DataGridColumn dataField="customsValue" rendererIsEditor="true" width="250" sortable="false" resizable="false" textAlign="center" >
   			 			<mx:headerRenderer >
   			 				<mx:Component >
   			 					<mx:Label text="{resourceManager.getString('AllResources','commodity.customsValueWithCurrency',outerDocument.commodityModel.currencyValue)}" />
   			 				</mx:Component>
   			 			</mx:headerRenderer>
   			 			<mx:itemRenderer >
   			 				<mx:Component >
   			 					<mx:Label text="{data.customsValue}" textAlign="right"  />
   			 				</mx:Component>
   			 			</mx:itemRenderer>
   			 		</mx:DataGridColumn>
   			 	</mx:columns>				
   			</mx:DataGrid>
   		</mx:HBox>`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] aharui commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643720569


   There are too many errors for me to take the time to address each one.  I am going to provide some information that you will have to combine with your knowledge of Flex to have the greatest impact on the number of errors, then we can discuss the leftover harder cases.
   
   First, all of your MXML files need to converted like the main app.  You have to change the mx namespace URI and add the fx namespace URI and convert some tags like Style, Script, and Metadata to fx.
   
   Some issues, like the CSS and States is due to differences between Flex 3 and Flex 4.  Here is the documentation on the differences: https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/upgrading-flex3-to-flex4-techguide.pdf
   
   Problems like "import flash" should be described in the Royale documentation.  Flex and Royale are designed to be a layer above the Flash runtime so it should have been possible to write a Flex app without ever writing "import flash".  Royale is emulating Flex, not Flash, so where your code uses "import flash", you will have to find a replacement for it.  Many things have been emulated in mx packages like mx.net.FileReference, but not everything (at least not yet) so your team will have to consider how important that Flash feature was and what expense you want to go to in order to get it to work again.  
   
   Another group of errors is due to the fact that the JS runtime does not support weak reference listeners.  Many times weak reference listeners were not actually needed so your team will have to consider each usage and decide what to do.  If you think you really need weak reference listeners then describe the scenario in a separate issue.
   
   Another group of errors is because Royale does not currently have an emulation for Flash's Dictionary.  Many times it also isn't needed.  If you are not using weak-reference Dictionaries then you can often use an Object if the toString() is unique.
   
   Another group of errors is because DisplayObject is no longer the lowest level visual element.  Try using IUIComponent, UIComponent, or IFlexDisplayObject.
   
   Another group is use of getTimer().  You could replace it with `Date.now()`.  There is a `getDefinitionByName` in `org.apache.royale.reflection`.
   
   Make these changes and see what's left.
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] yishayw commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
yishayw commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-645172693


   If your asconfig.json contains
   
   "config": "royale",
   
   Try changing it to
   
   "config": "flex",
   
   If it doesn’t, just add it at the root level.
   
   
   From: liju1985<ma...@github.com>
   Sent: Wednesday, June 17, 2020 8:29 AM
   To: apache/royale-asjs<ma...@noreply.github.com>
   Cc: Subscribed<ma...@noreply.github.com>
   Subject: Re: [apache/royale-asjs] Migration of Adobe Flex to Apache Royale - Support needed (#861)
   
   
   In flex it was import mx.collections.ArrayCollection; Royale SDK (D:\Software\apache-royale-0.9.7-bin-js-swf\royale-asjs) Intelligence says Definition mx.collections.ArrayCollection could not be found.
   
   —
   You are receiving this because you are subscribed to this thread.
   Reply to this email directly, view it on GitHub<https://github.com/apache/royale-asjs/issues/861#issuecomment-645160154>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AAQBE7MLOBVOYBYXTZ4ABZDRXBID7ANCNFSM4N4AQB5Q>.
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] yishayw commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
yishayw commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-655618127


   > The collection property is an ICollectionView. It has not been emulated in ComboBox but it should be possible to do so. Maybe @yishayw can help do that.
   
   @liju1985 , I could do that if necessary. However, until one of us gets to it, you could just replace references to collection with dataProvider and cast it to the expected type. For example, instead of
   
   `var cursor:IViewCursor = **collection**.createCursor();`
   
   You could perhaps do
   
   `var cursor:IViewCursor = (dataProvider as ArrayCollection).createCursor();`
   
   Let us know if that makes sense in your case.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-648048969


   Ok Thank you. Dictionary i was able to replace with ObjectMap.
   
   I can see so many place collection variable is used without declaring. Any idea what could be it? Im just pasting mxml where it is used.
   
   <?xml version="1.0" encoding="utf-8"?>
   <mx:ComboBox xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.apache.org/royale/mx">
   	<fx:Script>
   		<![CDATA[
   		//custom combo box with support to select an item by a given property value match
   
   			import mx.collections.IViewCursor;
   		 	import mx.controls.ComboBox;
   			public var valueField:String = "value";
   			/**
   			 *  lookup the item whose value equals the passed one, and set it as selected
   			 */
   			public function set selectedValue(value:Object):void
   			{
   				if (collection && collection.length)
   				{
   					var cursor:IViewCursor = collection.createCursor();
   					while (!cursor.afterLast)
   					{
   						var obj:Object = cursor.current;
   						if (obj[valueField] == value && obj[labelField]!=null) {
   							super.selectedItem = obj;
   							return;
   						}
   						cursor.moveNext();
   					}
   				}
   				super.selectedIndex = 0;
   			}
   			public function get selectedValue():Object
   			{
   				return super.selectedItem[valueField];
   			}			
   			
   			public function preserveDecimalLabelFn(item:Object):String {
   				var lbl:String = item.label as String;
   				if (lbl == null && !isNaN(item.label)) { // if it was taken as number
   					if (parseInt(item.label)==item.label) { // if number is int (.0 is taken out)
   						lbl = item.label+".0"; // add it
   					} else {
   						lbl = item.label+""; // else just convert back to string
   					}
   				}
   				return lbl;
   			}
   		]]>
   	</fx:Script>
   
   </mx:ComboBox>
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643239887


   Yes Im using VS Code. I just installed AS3 pluggin.
   
   mx.binding.utils.BindingUtils is still failing with a warning. import mx.external.ExternalInterface I did import, previous error is gone, but i can see ExternalInterface is failing following is my compilation output.
      [mxmlc] D:\<fakepath>WGRTFLEX/../WGRTFLEX/src/WGRTFLEX.mxml
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(40): col: 11 Warning: Definition mx.binding.utils.BindingUtils could not be found.
       [mxmlc] 
       [mxmlc] 			import mx.binding.utils.BindingUtils;
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(149): col: 10 Error: Access of possibly undefined property verticalScrollPosition through a reference with static type WGRTFLEX.
       [mxmlc] 
       [mxmlc] 				this.verticalScrollPosition = 0;
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(178): col: 25 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:Text width="100%" link="{loginHereClicked(event)}" styleName="purpleTextBold" 
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(188): col: 27 Warning: Data binding will not be able to detect assignments to 'fcl_firstname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(188): col: 49 Warning: Data binding will not be able to detect assignments to 'fcl_lastname'.
       [mxmlc] 
       [mxmlc] 				 ' ' + fcl_firstname + ' ' + fcl_lastname + '&lt;/b&gt;'}" />
       [mxmlc] 				                                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(193): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		visible="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\WGRTFLEX.mxml(194): col: 3 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		includeInLayout="{!isLoggedIn()}"
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheReadCommand.as(15): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheReadCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\HICacheUpdateCommand.as(16): col: 3 Warning: declaration 'callbackEvent' will be scoped to the default namespace: HICacheUpdateCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var callbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(16): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(22): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(32): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\commands\LoadConfigCommand.as(60): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\controller\ErrorMapWGRTFIApp.as(2): col: 1 Warning: declaration 'errorMapWGRTFIApp' will be scoped to the default namespace: WGRTFLEX: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] var errorMapWGRTFIApp:Array = [
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(19): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(20): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(21): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(22): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(25): col: 9 Warning: Definition mx.events.ResourceEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.events.ResourceEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(50): col: 9 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 		 	if (ExternalInterface.available) {
       [mxmlc] 		 	    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(51): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.addCallback("handleJS2FlexCall", handleJS2FlexCall);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 38 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(97): col: 73 Error: Call to a possibly undefined method loadResourceModule through a reference with static type IResourceManager.
       [mxmlc] 
       [mxmlc] 	                var eventDispatcher:IEventDispatcher = resourceManager.loadResourceModule(resourceModuleURL);
       [mxmlc] 	                                                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(98): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.COMPLETE, localeLoadedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(99): col: 51 Error: Access of possibly undefined property ResourceEvent.
       [mxmlc] 
       [mxmlc] 	                eventDispatcher.addEventListener(ResourceEvent.ERROR, localeLoadFailedHandler);
       [mxmlc] 	                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(106): col: 56 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadFailedHandler(event:ResourceEvent):void {
       [mxmlc]                                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(110): col: 52 Error: Type was not found or was not a compile-time constant: ResourceEvent.
       [mxmlc] 
       [mxmlc]         private function localeLoadedHandler(event:ResourceEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(129): col: 13 Warning: variable 'fi' has no type declaration.
       [mxmlc] 
       [mxmlc] 			for (var fi in fields) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(228): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handleLoginStatusChange",isLoggedIn);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(261): col: 36 Error: Access of possibly undefined property length.
       [mxmlc] 
       [mxmlc] 				lc = url.length>0 ? url.charAt(length-1) : "";
       [mxmlc] 				                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(344): col: 10 Warning: Duplicate variable definition: rateReq.
       [mxmlc] 
       [mxmlc] 					var rateReq:RateRequest = event.data.requestData;
       [mxmlc] 					    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(359): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handlePageSwitch",null, linkname, params);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(364): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("handlePageSwitch",redirectURL, linkName, "");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(369): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPackageUrl(false), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(371): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPackageUrl(true), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(373): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createFCLLoginUrl(), "_self"); 
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(381): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createBOLUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(383): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createPickupUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(385): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createInetUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(387): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 				navigateToURL(createWdpaUrl(), "_self");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(391): col: 57 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createPackageUrl(isExprFrght:Boolean):URLRequest {
       [mxmlc] 		                                                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(395): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(398): col: 34 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createBOLUrl():URLRequest {
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(401): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(404): col: 37 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createPickupUrl():URLRequest {
       [mxmlc] 		                                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(407): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(410): col: 35 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createInetUrl():URLRequest {
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(413): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(416): col: 35 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createWdpaUrl():URLRequest {
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(419): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(url);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(426): col: 39 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLLoginUrl():URLRequest {
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(436): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(loginUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(439): col: 40 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLLogoutUrl():URLRequest {
       [mxmlc] 		                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(457): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(logoutUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(460): col: 44 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createFCLAddAccountUrl():URLRequest {
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(470): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(loginUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(473): col: 40 Error: Type was not found or was not a compile-time constant: URLRequest.
       [mxmlc] 
       [mxmlc] 		public function createMyProfileUrl():URLRequest {
       [mxmlc] 		                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(486): col: 15 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			return new URLRequest(myProfileUrl);
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(590): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("showHide",true,"","wgrt.freightHistory.menu");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(594): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("showHide",true,"wgrt.freightHistory.menu","");
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(602): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("handleNeedItFaster")
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\model\WGRTFreightIntegrationPresentationModel.as(632): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("handleViewSwitch",viewName, map[2],titleValue);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: WGRTFIDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\WGRTFIDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("wgrtfi").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\service\test\WGRTFIDelegateTest.as(13): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: WGRTFIDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTInputView.mxml(49): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF" verticalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(39): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.MultipleDestinationTTResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\MultipleDestinationTTResultsView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox backgroundColor="#FFFFFF">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\NonLoggedInAlert.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryDetailResultsView.mxml(41): col: 3 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<mx:VBox		
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(46): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryInputView.mxml(57): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(36): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateHistoryResultsView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(46): col: 20 Warning: Data binding will not be able to detect assignments to '_workFlowManager'.
       [mxmlc] 
       [mxmlc] 		workFlowManager="{_workFlowManager}"
       [mxmlc] 		                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateHistoryResultsView.mxml(47): col: 61 Warning: Data binding will not be able to detect assignments to 'rateHistoryPresentationModel'.
       [mxmlc] 
       [mxmlc] 		presentationModel="{ApplicationModel.getInstance().dataMap.rateHistoryPresentationModel}"
       [mxmlc] 		                                                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(52): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.RateInputView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\RateInputView.mxml(70): col: 1 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:Canvas>	
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\ResultsView.mxml(51): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(38): col: 4 Warning: function 'initializeComponent' will be scoped to the default namespace: com.fedex.cbd.assembly.wgrtFreightIntegration.view.TransitTimeView: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 			function initializeComponent():void
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\assembly\wgrtFreightIntegration\view\TransitTimeView.mxml(46): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(16): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(20): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(30): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\commands\LoadConfigCommand.as(59): col: 12 Warning: Duplicate variable definition: idx.
       [mxmlc] 
       [mxmlc] 			for(var idx:int=0;idx<serviceList.length(); idx++)
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(24): col: 9 Warning: Definition flash.events.TextEvent could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.TextEvent;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(25): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(26): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(32): col: 9 Warning: Definition mx.validators.ZipCodeValidator could not be found.
       [mxmlc] 
       [mxmlc] 	import mx.validators.ZipCodeValidator;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(270): col: 18 Error: Call to a possibly undefined method ZipCodeValidator.
       [mxmlc] 
       [mxmlc] 			zipVObj = new ZipCodeValidator();
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(411): col: 14 Warning: Duplicate variable definition: i.
       [mxmlc] 
       [mxmlc] 				for (var i:int=0; i<5; i++) {
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(450): col: 9 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				if (ExternalInterface.available) {
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(451): col: 13 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 					return ExternalInterface.call("isInternetExplorer");
       [mxmlc] 					       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(461): col: 8 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			if (ExternalInterface.available) {
       [mxmlc] 			    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(462): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.addCallback("updateAddress", 
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(465): col: 5 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				ExternalInterface.call("openOutlookContactsWindow",woasHost);
       [mxmlc] 				^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1835): col: 53 Error: Access of possibly undefined property text through a reference with static type EventTarget.
       [mxmlc] 
       [mxmlc]             zipVObj.validate(eventObj.currentTarget.text);
       [mxmlc]                                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1847): col: 52 Error: Type was not found or was not a compile-time constant: TextEvent.
       [mxmlc] 
       [mxmlc]         public function handleUrlLinkClicked(event:TextEvent):void {
       [mxmlc]                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1848): col: 38 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc]         	flash.net.navigateToURL(new URLRequest(event.text), "_self");
       [mxmlc]         	                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\model\AddressPresentationModel.as(1848): col: 10 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc]         	flash.net.navigateToURL(new URLRequest(event.text), "_self");
       [mxmlc]         	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\service\AddressBookDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("address").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(53): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(62): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(63): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(67): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 121 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 53 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinRecipientAddressView.mxml(78): col: 37 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 	                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(49): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(57): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(58): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="99.3%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 122 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                                                                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 54 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\LoggedInMinSenderAddressView.mxml(69): col: 38 Error: This attribute is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 		<view:SelectionView id="selection" paddingLeft="5" includeInLayout="{addressPresentationModel.isSelectionModeEnabled}" visible="{addressPresentationModel.isSelectionModeEnabled}" addressPresentationModel="{addressPresentationModel}" />
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\address\view\SelectionView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\baseheader\view\BaseHeader.mxml(22): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{toplevel.text.length > 0}" includeInLayout="{toplevel.text.length > 0}"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(14): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(18): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\commands\LoadConfigCommand.as(28): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\control\RateHistoryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\control\RateHistoryEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateHistoryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(87): col: 13 Warning: Duplicate variable definition: svc.
       [mxmlc] 
       [mxmlc] 			for (var svc:int=0; svc < resultDetailsBySvcByLegAC.length; svc++) {
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(88): col: 9 Warning: Duplicate variable definition: currentSvcResultsAR.
       [mxmlc] 
       [mxmlc] 				var currentSvcResultsAR:ArrayCollection = resultDetailsBySvcByLegAC.getItemAt(svc) as ArrayCollection;
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(90): col: 9 Warning: Duplicate variable definition: o.
       [mxmlc] 
       [mxmlc] 				var o:Object = resultsAR.getItemAt(0);
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(169): col: 14 Warning: Duplicate variable definition: x.
       [mxmlc] 
       [mxmlc] 				for (var x:int = 0; x < surcharges.length; x++)
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryHelper.as(593): col: 9 Warning: Duplicate variable definition: displayResults.
       [mxmlc] 
       [mxmlc] 				var displayResults:ArrayCollection = new ArrayCollection();
       [mxmlc] 				    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryPresentationModel.as(24): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\model\RateHistoryPresentationModel.as(938): col: 4 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			ExternalInterface.call("goToFreight");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\service\RateHistoryDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rateHistory").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(4): col: 12 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc]     import flash.external.ExternalInterface; 
       [mxmlc]            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(57): col: 22 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 if (!ExternalInterface.available) { 
       [mxmlc]                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(62): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(FUNCTION_GET_COOKIE); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(63): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(FUNCTION_SET_COOKIE); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(79): col: 31 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 this._value = ExternalInterface.call(GET_COOKIE, name) as String; 
       [mxmlc]                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\util\Cookie.as(105): col: 17 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 ExternalInterface.call(SET_COOKIE, this._name, this._value); 
       [mxmlc]                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\GetRateHistoryView.mxml(75): col: 2 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\LinkRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(60): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(62): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(67): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(75): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="4" paddingBottom="4" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(125): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="6" paddingTop="6" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(168): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\RateHistorySummaryResultsView.mxml(185): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox horizontalAlign="left" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" verticalGap="0" >		
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rateHistory\view\SortableHeaderRenderer.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(15): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\commands\LoadConfigCommand.as(29): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\control\RateEventBroadcaster.as(8): col: 45 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function RateEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(23): col: 9 Warning: Definition flash.net.URLRequest could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.URLRequest;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(24): col: 9 Warning: Definition flash.net.navigateToURL could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.net.navigateToURL;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 23 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(902): col: 5 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			 navigateToURL(new URLRequest("http://www.fedexfreight.fedex.com/rateTruckLoadEntry.do"),"_self");
       [mxmlc] 			 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 22 Error: Call to a possibly undefined method URLRequest.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\model\RatePresentationModel.as(908): col: 4 Error: Call to a possibly undefined method navigateToURL.
       [mxmlc] 
       [mxmlc] 			navigateToURL(new URLRequest(sURL),"_self");
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(6): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\service\RateDelegateFactory.as(26): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("rate").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\GetRateView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button label="{resourceManager.getString('AllResources','common.getRatesAndTT')}" styleName="primaryButton" click="presentationModel.handleGetRate();"
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 25 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 31 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(123): col: 38 Error: Implicit coercion of a value of type String to an unrelated type Number.
       [mxmlc] 
       [mxmlc] 		    	date.setFullYear(year, month, day);
       [mxmlc] 		    	                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(128): col: 65 Error: Type was not found or was not a compile-time constant: DataGridColumn.
       [mxmlc] 
       [mxmlc] 		    private function getResourceForString(item:Object, column:DataGridColumn):String
       [mxmlc] 		                                                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 17 Error: Type was not found or was not a compile-time constant: TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(207): col: 33 Error: Call to a possibly undefined method TextField.
       [mxmlc] 
       [mxmlc] 					var myText:TextField = new TextField();
       [mxmlc] 					                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(261): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:DateFormatter id="dateFormatter" formatString="EEE MMM DD, YYYY"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(263): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox id="headerLabelId" width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(275): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%" />
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(277): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(288): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" 
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(302): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{!presentationModel.isLoggedIn}" includeInLayout="{!presentationModel.isLoggedIn}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(308): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" visible="{presentationModel.showLoggedInMessage}" includeInLayout="{presentationModel.showLoggedInMessage}" paddingLeft="10" paddingTop="5" >	
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(314): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" paddingLeft="10" paddingRight="10" paddingTop="5" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(327): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:VBox width="100%" id="hbox1" paddingLeft="10" paddingRight="10" verticalGap="0" >
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\rate\view\RateResultsView.mxml(485): col: 4 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]    <mx:HBox id="hbox3" width="100%" paddingLeft="10" paddingRight="10" paddingTop="3" >
       [mxmlc]    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\control\ShipmentSummaryEventBroadcaster.as(8): col: 56 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function ShipmentSummaryEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(91): col: 10 Error: Access of possibly undefined property parentDocument through a reference with static type ShipmentSummaryView.
       [mxmlc] 
       [mxmlc] 				this.parentDocument.rateResultsView.print();
       [mxmlc] 				     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(95): col: 5 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc]     <mx:DateFormatter id="dateFormatter" 
       [mxmlc]     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(98): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalGap="0">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(110): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HRule width="100%"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(113): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="TransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(115): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(133): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="MultiTransitTimesOnlyState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(135): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(153): col: 2 Error: An array element of type 'org.apache.royale.states.State' is incompatible with the expected [ArrayElementType] of 'mx.states.State' for the 'states' property.
       [mxmlc] 
       [mxmlc] 	<mx:State name="RatesAndTransitState">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\shipmentsummary\view\ShipmentSummaryView.mxml(155): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:AddChild>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(15): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(19): col: 3 Warning: declaration 'f3CallbackEvent' will be scoped to the default namespace: LoadConfigCommand: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var f3CallbackEvent:FedExCallbackEvent;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\commands\LoadConfigCommand.as(29): col: 28 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var hostname:String =  ExternalInterface.call("window.location.hostname.toString");
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\control\TransitTimeEventBroadcaster.as(8): col: 52 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function TransitTimeEventBroadcaster(arg0:IEventDispatcher=null)
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegate.as(21): col: 3 Warning: declaration 'httpService' will be scoped to the default namespace: TransitTimeDelegate: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var httpService:HTTPService;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(7): col: 9 Warning: Definition flash.utils.getDefinitionByName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getDefinitionByName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\TransitTimeDelegateFactory.as(27): col: 36 Error: Call to a possibly undefined method getDefinitionByName.
       [mxmlc] 
       [mxmlc] 			var delegateClass:Class = Class(getDefinitionByName(ConfigInfo.getInstance("transitTime").delegateClassName));
       [mxmlc] 			                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\service\test\TransitTimeDelegateTest.as(20): col: 3 Warning: declaration 'serviceID' will be scoped to the default namespace: TransitTimeDelegateTest: internal. It will not be visible outside of this package.
       [mxmlc] 
       [mxmlc] 		var serviceID:String;
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetMultiTransitTimeView.mxml(65): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:HBox width="100%" horizontalAlign="left" horizontalGap="0" horizontalScrollPolicy="off" verticalScrollPolicy="off">
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\component\transittime\view\GetTransitTimeView.mxml(61): col: 2 Error: This tag is unexpected. It will be ignored.
       [mxmlc] 
       [mxmlc] 	<mx:Button enabled="{presentationModel.enableTransitTimeButton}"  label="{resourceManager.getString('AllResources','common.getTT')}" styleName="secondaryButton1" click="presentationModel.handleGetTransitTime();"/>
       [mxmlc] 	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(13): col: 25 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _services:Dictionary;
       [mxmlc] 		                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(14): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _properties:Dictionary;
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(44): col: 26 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._services = new Dictionary();
       [mxmlc] 				                     ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\config\ConfigInfo.as(61): col: 28 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 				this._properties = new Dictionary();
       [mxmlc] 				                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(8): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 35 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(16): col: 52 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(17): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var moduleId2CompMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 38 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(18): col: 55 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var error2DisplayInfoMap:Dictionary = new Dictionary();
       [mxmlc] 		                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 32 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\BaseWorkFlowManager.as(19): col: 49 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var event2ModelMap:Dictionary = new Dictionary();
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(8): col: 9 Warning: Definition flash.utils.describeType could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.describeType;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(9): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(16): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		protected var commands:Dictionary = new Dictionary();
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExController.as(88): col: 38 Error: Call to a possibly undefined method describeType.
       [mxmlc] 
       [mxmlc]          	var classDescription:XML = describeType(commandReference) as XML;
       [mxmlc]          	                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(5): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(18): col: 4 Error: Incorrect number of arguments.  Expected no more than 2
       [mxmlc] 
       [mxmlc] 			super(type, bubbles, cancelable );
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEvent.as(51): col: 3 Error: A conflict exists with inherited definition source in class Event.
       [mxmlc] 
       [mxmlc] 		public function set source(source:IPresentationModel):void {
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(3): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(4): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(8): col: 34 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		private var iEventDispatcher : IEventDispatcher;
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(13): col: 53 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExEventBroadcaster(eventTarget:IEventDispatcher = null)
       [mxmlc] 		                                                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\control\FedExEventBroadcaster.as(15): col: 27 Error: Call to a possibly undefined method EventDispatcher.
       [mxmlc] 
       [mxmlc] 			iEventDispatcher = new EventDispatcher(eventTarget);
       [mxmlc] 			                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(4): col: 8 Warning: Definition flash.events.KeyboardEvent could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.KeyboardEvent;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(5): col: 8 Warning: Definition flash.ui.Keyboard could not be found.
       [mxmlc] 
       [mxmlc] import flash.ui.Keyboard;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(65): col: 38 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]         this.addEventListener( Event.RENDER, onRender );
       [mxmlc]                                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(75): col: 42 Error: Access of possibly undefined property RENDER through a reference with static type Event.
       [mxmlc] 
       [mxmlc]          this.removeEventListener( Event.RENDER, onRender );
       [mxmlc]                                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(281): col: 13 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]   			    if(collection.length==0 || getTypedText()==""|| getTypedText()==null)
       [mxmlc]   			       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(295): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function keyDownHandler(event:KeyboardEvent):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(304): col: 27 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.keyCode == Keyboard.UP && prevIndex==0)
       [mxmlc] 		                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(310): col: 30 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    else if(event.keyCode==Keyboard.ESCAPE && showingDropdown)
       [mxmlc] 		                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(317): col: 43 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			else if(lookAhead && event.keyCode ==  Keyboard.BACKSPACE 
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(318): col: 24 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 			|| event.keyCode == Keyboard.DELETE)
       [mxmlc] 			                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(322): col: 44 Error: Access of possibly undefined property Keyboard.
       [mxmlc] 
       [mxmlc] 		    if(event.ctrlKey && event.keyCode == Keyboard.UP)
       [mxmlc] 		                                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(354): col: 37 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 					var label:String = itemToLabel(collection[0]);
       [mxmlc] 					                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(384): col: 8 Error: Call to a possibly undefined method open.
       [mxmlc] 
       [mxmlc]  	    	super.open();
       [mxmlc]  	    	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(393): col: 30 Error: Incompatible override.
       [mxmlc] 
       [mxmlc] 	override protected function textInput_changeHandler(event:Event):void
       [mxmlc] 	                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(417): col: 4 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc]  		collection.filterFunction = templateFilterFunction;
       [mxmlc]  		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(418): col: 3 Error: Access of possibly undefined property collection.
       [mxmlc] 
       [mxmlc] 		collection.refresh();
       [mxmlc] 		^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(426): col: 29 Error: Method marked override must override another method.
       [mxmlc] 
       [mxmlc]   	override public function close(event:Event = null):void
       [mxmlc]   	                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\controls\AutoCompleteCB.as(428): col: 6 Error: Call to a possibly undefined method close.
       [mxmlc] 
       [mxmlc]     	super.close(event);
       [mxmlc]     	^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(3): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(23): col: 16 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime = getTimer();
       [mxmlc] 			            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\log\MetricsTimer.as(28): col: 15 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			stopTime = getTimer();
       [mxmlc] 			           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(6): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(24): col: 28 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public var viewReference:DisplayObject;
       [mxmlc] 		                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(88): col: 35 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function AssignView(view:DisplayObject):void
       [mxmlc] 		                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\ApplicationModel.as(93): col: 39 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function getRefernceToView():DisplayObject
       [mxmlc] 		                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(5): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(6): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(19): col: 51 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public function handleShowProgressBar(container:DisplayObject):void{
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(24): col: 18 Error: Implicit coercion of a value with static type Object to a possibly unrelated type mx.core.IFlexDisplayObject.
       [mxmlc] 
       [mxmlc] 			popUpWindow = PopUpManager.createPopUp(container,fetchPopUpView,false);
       [mxmlc] 			              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(32): col: 39 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			var browserScrollTop:int= parseInt(ExternalInterface.call("getBrowserScrollTop"));
       [mxmlc] 			                                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(33): col: 43 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 		    var browserScrollLeft:int= parseInt(ExternalInterface.call("getBrowserScrollLeft"));
       [mxmlc] 		                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(40): col: 32 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (x > popUpWindow.parent.width - popUpWindow.width) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(41): col: 34 Error: Access of possibly undefined property width through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					x = x - (popUpWindow.parent.width - popUpWindow.width);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(47): col: 32 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 				if (y > popUpWindow.parent.height - popUpWindow.height) {
       [mxmlc] 				                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExModel.as(48): col: 34 Error: Access of possibly undefined property height through a reference with static type IParent.
       [mxmlc] 
       [mxmlc] 					y = y - (popUpWindow.parent.height - popUpWindow.height);
       [mxmlc] 					                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(10): col: 9 Warning: Definition flash.events.EventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.EventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(11): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(12): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(19): col: 46 Error: The definition of base class EventDispatcher was not found.
       [mxmlc] 
       [mxmlc] 	public class FedExPresentationModel extends EventDispatcher implements IPresentationModel
       [mxmlc] 	                                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(25): col: 49 Error: Type was not found or was not a compile-time constant: IEventDispatcher.
       [mxmlc] 
       [mxmlc] 		public function FedExPresentationModel(target:IEventDispatcher=null)
       [mxmlc] 		                                              ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\FedExPresentationModel.as(159): col: 26 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 			var isReady:Boolean = ExternalInterface.call("openWin",sURL);
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(8): col: 9 Warning: Definition flash.events.IEventDispatcher could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.IEventDispatcher;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\model\IPresentationModel.as(14): col: 48 Error: interface IEventDispatcher was not found.
       [mxmlc] 
       [mxmlc]    public interface IPresentationModel extends IEventDispatcher
       [mxmlc]                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(7): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 34 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(25): col: 51 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 		private var _optionsDictionary:Dictionary = new Dictionary();
       [mxmlc] 		                                                ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\option\FedExOptionsFactory.as(41): col: 29 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			_optionsDictionary = new Dictionary();
       [mxmlc] 			                         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(3): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(13): col: 26 Warning: return value for function 'getValueFromJS' has no type declaration.
       [mxmlc] 
       [mxmlc] 		public static function getValueFromJS(jsExpr:String, defVal:String="") { // get value of given JS Expression
       [mxmlc] 		                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\service\ConfigReader.as(16): col: 14 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				retVal = ExternalInterface.call(jsExpr);
       [mxmlc] 				         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(3): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(4): col: 9 Warning: Definition flash.display.DisplayObjectContainer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObjectContainer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(5): col: 9 Warning: Definition flash.text.TextFormat could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.text.TextFormat;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 63 Error: Type was not found or was not a compile-time constant: DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                            ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(11): col: 87 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		public static function getChildByIdRecursive(id:String, par:DisplayObjectContainer):DisplayObject {
       [mxmlc] 		                                                                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(12): col: 12 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var ret:DisplayObject  = null;
       [mxmlc] 			        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(13): col: 14 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var child:DisplayObject = null;
       [mxmlc] 			          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(18): col: 25 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 				} else if (child is DisplayObjectContainer) {
       [mxmlc] 				                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(19): col: 46 Error: Access of possibly undefined property DisplayObjectContainer.
       [mxmlc] 
       [mxmlc] 					ret = getChildByIdRecursive(id,child as DisplayObjectContainer);
       [mxmlc] 					                                        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 22 Error: Type was not found or was not a compile-time constant: TextFormat.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(38): col: 38 Error: Call to a possibly undefined method getTextFormat through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 			var currentFormat:TextFormat = tf.getTextFormat(0);
       [mxmlc] 			                                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(43): col: 8 Error: Call to a possibly undefined method replaceText through a reference with static type IUITextField.
       [mxmlc] 
       [mxmlc] 				tf.replaceText(result.index, result.index + result[0].length, result[1]);
       [mxmlc] 				   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\util\UIUtils.as(46): col: 27 Error: Call to a possibly undefined method TextFormat.
       [mxmlc] 
       [mxmlc] 				tf.setTextFormat(	new TextFormat(	"GGSuperscript", 
       [mxmlc] 				                 	    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(11): col: 9 Warning: Definition flash.display.DisplayObject could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.display.DisplayObject;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(12): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(50): col: 42 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrTexts4Comp(comp:DisplayObject, errTexts:ArrayCollection):void {
       [mxmlc] 		                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(54): col: 41 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 		private function setErrText4Comp(comp:DisplayObject, errTxt:String):void {
       [mxmlc] 		                                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 27 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(74): col: 54 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 				 target2ErrTxtCollMap:Dictionary, target2CompMap:Dictionary):Boolean {
       [mxmlc] 				                                                 ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(75): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(112): col: 13 Error: Type was not found or was not a compile-time constant: DisplayObject.
       [mxmlc] 
       [mxmlc] 			var comp:DisplayObject = null;
       [mxmlc] 			         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 26 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                      ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(114): col: 43 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2ErrTextMap:Dictionary = new Dictionary();
       [mxmlc] 			                                       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 23 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                   ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\BaseFedExComponent.as(115): col: 40 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			var target2CompMap:Dictionary = new Dictionary();
       [mxmlc] 			                                    ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(3): col: 8 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] import flash.events.Event;
       [mxmlc]        ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(17): col: 32 Error: Access of possibly undefined property ADDED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.ADDED, registerView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewHelper.as(18): col: 32 Error: Access of possibly undefined property REMOVED through a reference with static type Event.
       [mxmlc] 
       [mxmlc] 		view.addEventListener( Event.REMOVED, unregisterView );
       [mxmlc] 		                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(3): col: 9 Warning: Definition flash.utils.Dictionary could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.Dictionary;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(10): col: 29 Error: Type was not found or was not a compile-time constant: Dictionary.
       [mxmlc] 
       [mxmlc] 		private var viewHelpers : Dictionary;      
       [mxmlc] 		                          ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FedExViewLocator.as(25): col: 22 Error: Call to a possibly undefined method Dictionary.
       [mxmlc] 
       [mxmlc] 			viewHelpers = new Dictionary();
       [mxmlc] 			                  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\FetchPopUpView.mxml(2): col: 1 Error: This tag could not be resolved to an ActionScript class. It will be ignored.
       [mxmlc] 
       [mxmlc] <mx:TitleWindow 
       [mxmlc] ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\framework\view\IFedExViewHelper.as(3): col: 9 Warning: Definition flash.events.Event could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.events.Event;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(2): col: 9 Warning: Definition flash.utils.getTimer could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getTimer;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(37): col: 23 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			startTime								= getTimer();
       [mxmlc] 			         								  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(85): col: 27 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 				sections[name]						= getTimer();
       [mxmlc] 				              						  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(95): col: 86 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var logString:String 					= name + "	(" + getTimeDifferenceString(sections[name], getTimer()) + ")";
       [mxmlc] 			                     					          	                                             ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\LogCore.as(124): col: 50 Error: Call to a possibly undefined method getTimer.
       [mxmlc] 
       [mxmlc] 			var time:String				= numberFormatter.format(((getTimer() - startTime) / 1000));
       [mxmlc] 			               				                           ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(45): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(ResultEvent.RESULT, resultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\MetricsWriter.as(46): col: 4 Error: Incorrect number of arguments.  Expected no more than 4
       [mxmlc] 
       [mxmlc] 			service.addEventListener(FaultEvent.FAULT, faultHandler, false, 0, true);
       [mxmlc] 			^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(2): col: 9 Warning: Definition flash.external.ExternalInterface could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.external.ExternalInterface;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(3): col: 9 Warning: Definition flash.utils.escapeMultiByte could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.escapeMultiByte;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(4): col: 9 Warning: Definition flash.utils.getQualifiedClassName could not be found.
       [mxmlc] 
       [mxmlc] 	import flash.utils.getQualifiedClassName;
       [mxmlc] 	       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(629): col: 11 Error: Call to a possibly undefined method escapeMultiByte.
       [mxmlc] 
       [mxmlc] 			return flash.utils.escapeMultiByte(inValue);
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(653): col: 34 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc] 				var qs:String 						= fRight(ExternalInterface.call("window.location.href.toString"), "?");
       [mxmlc] 				              						         ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(710): col: 20 Error: Access of possibly undefined property validPatternChars through a reference with static type mx.formatters.PhoneFormatter.
       [mxmlc] 
       [mxmlc] 				phoneFormatter.validPatternChars				= "#-() ";
       [mxmlc] 				               ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\com\fedex\cbd\ida\utilities\SystemUtilities.as(738): col: 12 Error: Call to a possibly undefined method getQualifiedClassName.
       [mxmlc] 
       [mxmlc] 				return getQualifiedClassName(object);
       [mxmlc] 				       ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(137): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. LinkButton
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(147): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. HRule
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(159): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. TextArea
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(165): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. ComboBox
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(170): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Form
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(177): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. FormItem
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] 13.6824251 seconds
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\cbdcommon.css(182): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. DateField
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
       [mxmlc] 
       [mxmlc] D:\<fakepath>WGRTFLEX\src\css\wgrt.css(3): col: 2 Error: Type selector without namespace prefix requires a default namespace to be defined. Application
       [mxmlc] 
       [mxmlc] {
       [mxmlc]  ^
   
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] Harbs commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
Harbs commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643167125


   1. It should be: `mx.binding.utils.BindingUtils` and not `fx`.
   2. You need to import `mx.external.ExternalInterface`.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] aharui commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-652817938


   The collection property is an ICollectionView.  It has not been emulated in ComboBox but it should be possible to do so.  Maybe @yishayw can help do that.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-645160154


   In flex it was **import mx.collections.ArrayCollection;** Royale SDK (D:\Software\apache-royale-0.9.7-bin-js-swf\royale-asjs) Intelligence says **Definition mx.collections.ArrayCollection could not be found.** 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643128494


   Hi Alex,
   Thanks, few Errors got resolved, Below are next:
   
      D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(69): col: 25 Error: Access of possibly undefined property ExternalInterface.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 edited a comment on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 edited a comment on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-644784051


   This helped a lot. Can you help on Substitute of SortField in ArrayList
   Below is the code which is available. I changed ArrayCollection to ArrayList. But im not able to assign the Sort Object to a arrayList
   
   private function sortAccountListBy(accountList:ArrayCollection, sortBy:String):void {
   			if(accountList.length <= 1)
   				return;
   			
   			var sort:Sort = new Sort();				
   			sort.fields = [new SortField("label"+sortBy,true)];
   			accountList.sort = sort;
   			accountList.refresh();
   		}


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [royale-asjs] liju1985 commented on issue #861: Migration of Adobe Flex to Apache Royale - Support needed

Posted by GitBox <gi...@apache.org>.
liju1985 commented on issue #861:
URL: https://github.com/apache/royale-asjs/issues/861#issuecomment-643128494


   Hi Alex,
   Thanks, few Errors got resolved, Below are next:
   
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX/../WGRTFLEX/src/WGRTFLEX.mxml
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(39): col: 11 Warning: Definition fx.binding.utils.BindingUtils could not be found.
       [mxmlc] 
       [mxmlc] 			import fx.binding.utils.BindingUtils;
       [mxmlc] 			       ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(50): col: 80 Error: Access of possibly undefined property IFedexManagedComponent.
       [mxmlc] 
       [mxmlc] 			var wgrtFIWFM:BaseWorkFlowManager = BaseWorkFlowManager.getInstance(this as IFedexManagedComponent,errorMapWGRTFIApp);
       [mxmlc] 			                                                                            ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(67): col: 22 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                 	if (ExternalInterface.available){
       [mxmlc]                 	    ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(68): col: 25 Error: Access of possibly undefined property ExternalInterface.
       [mxmlc] 
       [mxmlc]                         ExternalInterface.call("setFlashHeight", measuredHeight);
       [mxmlc]                         ^
       [mxmlc] 
       [mxmlc] D:\Work\Clients\FedEx\Apps\WGRT\VCWorkspace\SVN\WGRTFLEX\src\WGRTFLEX.mxml(69): col: 25 Error: Access of possibly undefined property ExternalInterface.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org