VerifyError: Error # 1107: ABC data is corrupted, attempt to read out of bounds. - Flash CS5

I tested this flash application in the Flash IDE, it was never the result of this error. But when I uploaded to the server, I received this error. Why do we get this VerifyError? This flash application downloads all library resources through the bootloader, later it will receive assets from bulkloader for display on the main page. Assets include swf, xml, etc.

+4
source share
1 answer

This usually happens when loading external SWF files that use a different version of the classes that are in the main application.

This may be due to the fact that you compiled some RSL modules, modules, or other external SWFs for another version of the Flex SDK. It may also be that you changed the class and did not recompile all the SWFs again.

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

+1
source

Source: https://habr.com/ru/post/1337095/


All Articles