Миграция с Flex 3 на Flex 4 Ошибки - PullRequest
1 голос
/ 10 августа 2011

Здравствуйте, я перенес свой проект Flex 3 на FLex 4: я получаю следующие ошибки:

У всех есть идеи по исправлению этой проблемы во Flex 4.

1061: Call to a possibly undefined method activate through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method activate through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method activate through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method activate through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method addFocusManager through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method addFocusManager through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method addFocusManager through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method addFocusManager through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method removeFocusManager through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method removeFocusManager through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method removeFocusManager through a reference with static type mx.managers:ISystemManager.
1061: Call to a possibly undefined method removeFocusManager through a reference with static type mx.managers:ISystemManager.
1144: Interface method addPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl. 
1144: Interface method addPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl. 
1144: Interface method addPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl. 
1144: Interface method addPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl. 
1144: Interface method createPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl.  
1144: Interface method createPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl.  
1144: Interface method createPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl.  
1144: Interface method createPopUp in namespace mx.managers:IPopUpManager is implemented with an incompatible signature in class mx.managers:PopUpManagerImpl.  

Спасибо за вашу помощь.

1 Ответ

3 голосов
/ 10 августа 2011

Подобные ошибки обычно возникают из-за несовпадения версий.Поэтому убедитесь, что все ваши внешние библиотеки скомпилированы с той же версией Flex SDK, что и ваш основной проект.

Если вы используете фреймворки или другие библиотеки, найденные в Интернете, вам, возможно, придется перекомпилировать их самостоятельно, если исходный код доступен.

...