正常的纽扣皮肤在哪里

时间:2010-06-20 22:26:58

标签: flex actionscript-3 adobe mxml

我正在尝试复制/修改默认按钮的spark皮肤,但不确定如何找到该皮肤。当我将鼠标悬停在<s:ButtonCtrl + Click上时,它会转到Button课程,但那里没有任何皮肤信息。

1 个答案:

答案 0 :(得分:2)

默认按钮外观位于spark/skins/spark/ButtonSkin和子类Skin中。 不知道你为什么要这样编辑。

您可以使用mxml文件创建外观类,并使用skinClass

引用它
<s:Skin 
xmlns:fx="http://ns.adobe.com/mxml/2009" 
xmlns:mx="library://ns.adobe.com/flex/mx" 
xmlns:s="library://ns.adobe.com/flex/spark" 
minWidth="21" minHeight="21">

<fx:Metadata>
    [HostComponent("spark.components.Button")]
</fx:Metadata> 

<s:states>
    <s:State name="up"/>
    <s:State name="over"/>
    <s:State name="down"/>
    <s:State name="disabled"/>
</s:states>

<s:Rect left="0" right="0" top="0" bottom="0" width="69" height="20" radiusX="2" radiusY="2">
    <s:stroke>
        <s:SolidColorStroke color="0x000000" weight="1"/>
    </s:stroke>
</s:Rect>

<s:Label id="labelDisplay" 
    alpha.up="1"
    alpha.down=".5"
    alpha.over=".25"
    horizontalCenter="0" verticalCenter="1"
    left="10" right="10" top="2" bottom="2">
</s:Label>
</s:Skin>

并在您的主要申请中

<s:Button label="Alpha Change" skinClass="mySkins.AlphaButtonSkin"/>