在Flash / Flex Builder中显示嵌入图像

时间:2010-06-07 15:44:15

标签: flex actionscript-3 flexbuilder embedding flash-builder

我在Flex 4中使用图像嵌入(与Flex 3相同)。我有一个课程有很多

[Embed(source="../assets/icons/icon1.png")] 
public static const image:ClasS

我使用以下方式引用它们:

<mx:Image source="{imagesResources.image}"/>

当我运行应用程序时,我看到了图标,但在Flash(Flex)Builder中,我在设计模式下工作时看不到图像。有没有办法在Flash Builder设计模式下启用图像可视化?或者更好的方式来包含资源。

感谢

2 个答案:

答案 0 :(得分:2)

可悲的是没有。如果嵌入图像(或资源),然后将source属性设置为Class变量,则它们将不会在Flex Builder for Flash Builder的“设计视图”中显示。

当我想看到它们时,我做的是将它们设为static source =“mypath / myimage.jpg”,然后进行调整,然后将其更改回Class变量。

答案 1 :(得分:0)

您是否尝试在MXML中使用@Embed()指令?请查看标题为“在MXML中使用@Embed()指令”的this link