我有以下 MXML 标签:
<mx:Image id="image" width="100%" height="100%"
source="@Embed('../assets/Test.swf')"
complete="completeHandler(event)"
progress="progressHandler(event)"/>
但由于某种原因,我的 completeHandler / progressHandler 函数没有被调用。我需要完整事件的原因是因为我想在图像加载后操作位图数据。在 creationComplete 中,位图数据仍然为空。为什么这些事件没有触发?
编辑:资产在我的应用程序中正确显示 - 所以我知道资产在正确的位置(嵌入保证无论如何在编译时)。