<!-- embed\ButtonIcon.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Button label="Icon Button" icon="@Embed(source='logo.gif')"/>
</mx:Application>
<!-- embed\ButtonIconClass.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
[Embed(source="logo.gif")]
[Bindable]
public var imgCls:Class;
]]>
</mx:Script>
<mx:Button label="Icon Button 1" icon="{imgCls}"/>
<mx:Button label="Icon Button 2" icon="{imgCls}"/>
</mx:Application>
<!-- embed\ButtonIconCSS.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style>
.myCustomButton {
overSkin:Embed(source="overIconImage.gif");
upSkin:Embed(source="upIconImage.gif");
downSkin:Embed(source="downIconImage.gif");
}
</mx:Style>
<mx:Button label="Icon Button Style Def" styleName="myCustomButton"/>
</mx:Application>

参数 | 定义 |
source | 定义了要植入的资源的名称和路径,可以是绝对路径或相对于包含植入语句的文件的路径。被植入的资源必须是一个保存在本地的资源,因此你不能为被植入的的资源定义一个URL。 |
mimeType | 定义资源的mime类型 |
参数 | 定义 |
scaleGridTop | Specifies the distance in pixels of the upper dividing line from the top of the p_w_picpath in a 9-slice scaling formatting system. The distance is relative to the original, unscaled size of the p_w_picpath |
scaleGridBotom | Specifies the distance in pixels of the lower dividing line from the top of the p_w_picpath in a 9-slice scaling formatting system. The distance is relative to the original, unscaled size of the p_w_picpath. |
scaleGridLeft | Specifies the distance in pixels of the left dividing line from the left side of the p_w_picpath in a 9-slice scaling formatting system. The distance is relative to the original, unscaled size of the p_w_picpath. |
scaleGridRight | Specifies the distance in pixels of the right dividing line from the left side of the p_w_picpath in a 9-slice scaling formatting system. The distance is relative to the original, unscaled size of the p_w_picpath. |
参数 | 定义 |
symbol | 定义了在被植入的SWF文件中的标记。 |