I have got a lot of icons for an application and right now its embedded in the script tag eg:in my script tag i have
[Embed(source="/assets/icons/save_it_icon.png")]
[Bindable]
private var saveIcon:Class;
in my flex component :
<mx:Image id ="savePaneImg" source="{saveIcon}"
buttonMode="true"
toolTip="Save comments"
click="doSave();" />
How do i move this image source to css file for resusability across different components?
Thanks in advance