This error often refers to missing assets in the swf file that is expected to be there. For example, if you get the following error:
Variable ExampleView__embed_mxml__assets_png_example_picture_png_1012766830 is not defined.
It refers to a missing asset in an mxml file called ExampleView attempting to reference a png file as in the VBox below:
<mx:VBox backgroundImage="@Embed(source='/assets/png/example_picture.png')" width="100%"
In this instance, you must remember to include these assets into the compiled swf files.
1 comment:
Thank you thank you thank you!! :)
You just saved my life 20 minutes before a critical release
Post a Comment