IAutomationObject not found when starting Flex application

I am getting the following error when I try to run my flex app (which works fine!). I've been playing around with various settings trying to optimize the compiled size. I returned these options to their defaults as far as I thought, but am still getting problems.

I remember getting this error before, but I don't seem to remember how I fixed it, and no helpful information on how to fix it!

Somebody knows?

VerifyError: Error # 1014: The IAutomationObject could not be found.

at flash.display::MovieClip/nextFrame()
at mx.managers::SystemManager/deferredNextFrame()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\managers\SystemManager.as:299]
at mx.managers::SystemManager/preloader_initProgressHandler()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\managers\SystemManager.as:2225]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.preloaders::Preloader/timerHandler()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\preloaders\Preloader.as:398]
at flash.utils::Timer/_timerDispatch()
at flash.utils::Timer/tick()

      

+1


source to share


2 answers


I haven't come across this, but here are some tips on what to try:



  • Have you excluded any classes in your compiler settings?
  • If you are using Flex Builder try doing a clean (Project> Clean ...).
  • If that doesn't help, remove all eclipse and flex builder files from your project and create a new project that points to your existing sources.
+1


source


It turned out that I had changed the embed mode in the externally accessed .swc file set to "External" and not like its "RSL".



+1


source







All Articles