You will use Embed() directive for specifying the source of the asset to the component.
You will use Embed() directive for specifying the source of the asset to the component.You will use Embed() directive for specifying the source of the assetto the component.
It is described in <fx:Style> tag. In this example you can see how we can use
the Embed() directive in your application.
for example:
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
mx|Button{
up-skin:Embed("C:/work/bikrant/image/redball.png");
}
</fx:Style>
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"> <fx:Style> @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; mx|Button{ up-skin:Embed("C:/work/bikrant/image/redball.png"); } </fx:Style> <s:Panel title="Embedded assets using style" chromeColor="#555555" color="#CCCCCC" width="332" height="211"> <mx:Button id="btn" label="Button" x="100" y="49" height="66" width="128" fontSize="20" fontFamily="Verdana"/> </s:Panel> &</s:Application> |