我有很多应用程序图标,现在它嵌入在脚本标签中,例如:在我的脚本标签中
[Embed(source="/assets/icons/save_it_icon.png")]
[Bindable]
private var saveIcon:Class;
在我的 flex 组件中:
<mx:Image id ="savePaneImg" source="{saveIcon}"
buttonMode="true"
toolTip="Save comments"
click="doSave();" />
如何将此图像源移动到 css 文件以在不同组件之间重用?
提前致谢