4

I tested this flash application in Flash IDE, it never through this error. But When I uploaded in server, got this error. Why we getting this VerifyError? It is a flash application loads all the library assets through bulk loader, later it will get assets from bulkloader to display in the main page. Assets includes swf,xml etc.

particle
  • 131
  • 5
  • 13
  • Definitly need more info. And a question to answer! Don't why this question would get an up vote. – Adam Harte Jan 26 '11 at 05:43
  • @TandemAdam . I tested this flash application in Flash IDE, it never through this error. But When I uploaded in server, got this error. Why we getting this VerifyError? It is a flash application loads all the library assets through bulk loader, later it will get assets from bulkloader to display in the main page. – particle Jan 26 '11 at 07:15
  • @Florian library assets includes swf,xml etc. – particle Jan 27 '11 at 03:26
  • I think the problem comes from a SWF you're loading. Try to find which one is responsible forst – Florian F Jan 27 '11 at 08:20

1 Answers1

1

Usually this happens when loading external SWF files, which are using a different version of classes that are in the main application.

This could be because you compiled some RSL's, modules or other external SWF against a different version of the Flex SDK. It could also be that you changed a class and didn't recompile all of the SWF's again.

Sometimes you can do everything right, but an old SWF is cached by your browser, and so is incompatible with your main application. You can get around this by adding the version number to file names, so that an old cached version is never used.

Peter Hall
  • 53,120
  • 14
  • 139
  • 204