我想将我的应用程序从Flex 3.6迁移到Flex 4.5。
假设我在Flex 3.6中有这段代码:
<mx:Image id="lImage"
source="@Embed(source='assets/loading.swf')"
/>此外,这个<mx:Image/>在flex 4.5中成为<s:BitmapIamge/>。因此,我们有以下代码:
<s:BitmapImage id="lImage"
source="@Embed(source='assets/loading.swf')"
/>但是我对loading.swf的转码有一个错误。有什么帮助吗。
发布于 2011-12-15 16:58:04
问题解决了它是关于SWC文件的生成路径
https://stackoverflow.com/questions/8523151
复制相似问题