`
shlei
  • 浏览: 287769 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

flex 4.5 simple spark button skinning

    博客分类:
  • FLEX
阅读更多
Anyone missed the old simple method for skinning a simple button?

<mx:Button x="10" y="10" label=""
           upSkin="@Embed('imgs/mainButton_std.png')"
           overSkin="@Embed('imgs/mainButton_over.png')"
           downSkin="@Embed('imgs/mainButton_over.png')"
           disabledSkin="@Embed('imgs/mainButton_std.png')"
           creationComplete="mainButtonHitArea()"
           width="75" height="75" id="menuButton" enabled="true"/>

//mainButtonHitArea() : Is a generic function that generates the hit area
The problem im having is that, this method of creating a simple button with skin is being phased out : Infact it is no longer supported in flex 4.5 mobile projects.

So the question: Is there a simple way to perform this, with spark buttons (which is suppose to be the new way to go). As simple as possible.

Basically i only need a button with 2 images : down/over & up. And i want to keep the code as simple as possible : The new skinning methods, seems to really adds way too much lines for something that used to be as simple as the example above.

You can create a skin, i.e. (as MyButtonSkin.mxml):

<?xml version="1.0" encoding="utf-8"?>
<s:SparkSkin name="MyButtonSkin"
             xmlns:fx="http://ns.adobe.com/mxml/2009" 
             xmlns:s="library://ns.adobe.com/flex/spark" 
             xmlns:fb="http://ns.adobe.com/flashbuilder/2009">
    <s:states>
        <s:State name="up" />
        <s:State name="over" />
        <s:State name="down" />
        <s:State name="disabled" />
    </s:states>    
    <fx:Metadata>
        <![CDATA[
        [HostComponent("spark.components.Button")]
        ]]>
    </fx:Metadata>    
    <s:BitmapImage source.disabled="@Embed('assets/image1.png')" 
                source.down="@Embed('assets/image2.png')" 
                source.up="@Embed('assets/image3.png')" 
                source.over="@Embed('assets/image4.png')" />
</s:SparkSkin>

Then you can assign that skin to some button:

<s:Button skinClass="MyButtonSkin"/>


Here's a basic image button that's more general:

ImageButtonSkin.mxml

<s:SparkButtonSkin xmlns:fx="http://ns.adobe.com/mxml/2009" 
             xmlns:s="library://ns.adobe.com/flex/spark" 
             xmlns:fb="http://ns.adobe.com/flashbuilder/2009">
    <fx:Metadata>
        [HostComponent("com.instantdelay.flex.commons.ImageSkinnableButton")]
    </fx:Metadata>
    <s:states>
        <s:State name="up" />
        <s:State name="over" />
        <s:State name="down" />
        <s:State name="disabled" />
    </s:states>
    <s:BitmapImage id="image"
                   source.up="{getStyle('upImage')}"
                   source.down="{getStyle('downImage')}"
                   source.over="{getStyle('overImage')}"
                   source.disabled="{getStyle('disabledImage')}"
                   />
</s:SparkButtonSkin>

ImageSkinnableButton.as

[Style(name="upImage", inherit="no", type="Class")]
[Style(name="downImage", inherit="no", type="Class")]
[Style(name="overImage", inherit="no", type="Class")]
[Style(name="disabledImage", inherit="no", type="Class")]
public class ImageSkinnableButton extends Button
{
    public function ImageSkinnableButton()
    {
        super();
        setStyle("skinClass", ImageButtonSkin);
    }
}

Then you can set the images as styles on the button in either CSS (preferred) or in mxml:

<commons:ImageSkinnableButton
    upImage="@Embed('imgs/mainButton_std.png')"
    overImage="@Embed('imgs/mainButton_over.png')"
    downImage="@Embed('imgs/mainButton_over.png')"
    disabledImage="@Embed('imgs/mainButton_std.png')" />


You can also define a ButtonImageSkin for the default spark.components.Button component, for example in the imageskins package:

<s:SparkButtonSkin xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    xmlns:fb="http://ns.adobe.com/flashbuilder/2009">
    <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:BitmapImage source="{getStyle('backgroundImage')}"/>
</s:SparkButtonSkin>

Simply define a style on the skin class itself, and bind the source of the image to it. Now, you can control the actual images using CSS pseudo selectors:

@namespace imageskins "imageskins.*";
s|Button {
    skinClass: ClassReference("imageskins.ButtonImageSkin");    
}
imageskins|ButtonImageSkin:up {
    backgroundImage: Embed(source="assets/images/button-up.png");
}
imageskins|ButtonImageSkin:down {
    backgroundImage: Embed(source="assets/images/button-down.png");
}
imageskins|ButtonImageSkin:over {
    backgroundImage: Embed(source="assets/images/button-over.png");
}
imageskins|ButtonImageSkin:disabled {
    backgroundImage: Embed(source="assets/images/button-disabled.png");
}
From http://stackoverflow.com/questions/6477137/flex-4-5-simple-spark-button-skinning
分享到:
评论

相关推荐

    Flex 4.5 API

    在Flex 4.5中,有许多关键的改进和新特性,包括Spark组件模型、Skinning和Styling的增强,以及数据服务的优化。 1. **Spark组件模型**:Spark组件模型是Flex 4.5的核心,它与以前的 Halo 组件模型相比,提供了更...

    Flex4.5 Moblie Hello

    5. **Mobile Skinning and Theming**:Flex 4.5提供了移动皮肤和主题机制,允许开发者根据目标设备和用户界面需求定制应用的外观和行为。通过修改CSS样式的SkinClass,可以实现组件在不同设备上的差异化显示。 6. *...

    瑞研Flex4.5最新培训资料

    4. **Skinning和 Theming**:在Flex 4.5中,通过皮肤和主题可以改变组件的外观和感觉。开发者可以创建自定义皮肤,或者使用预定义的主题来改变整个应用的视觉样式。 5. **数据绑定**:Flex支持双向数据绑定,使得...

    flex4.5+SSH项目搭建

    Flex 4.5引入了Spark组件模型和Skinning,提供了更丰富的用户界面设计和更好的性能。它使用MXML和ActionScript 3.0进行开发,能够创建交互性强、图形丰富的Web应用前端。 2. **SSH框架**: - **Struts2**:这是一...

    Flex4.5 skins学习

    Flex4.5 skins学习主要关注的是Adobe Flex框架中Spark Skins的使用和定制。Spark Skins是Flex 4引入的一种全新的皮肤机制,旨在提供更高效、更灵活的界面设计能力,使得开发者能够更容易地改变应用程序的外观和感觉...

    WeiboTrends 仿TwitterTrends

    Flex 4.5中的Skinning和States机制也使得开发者能够根据不同的用户操作状态改变界面的外观和行为。 总的来说,"WeiboTrends 仿TwitterTrends"项目不仅是一个学习Flex 4.5的好素材,同时也展示了如何使用Flex技术来...

    flex英文帮助文档(非常详细)

    - **Spark Skinning**:详细讲解了 Spark 框架下的皮肤设计方法。 - **MX 组件皮肤化**:讲述了如何对 MX 框架下的组件进行皮肤化处理。 - **嵌入资产**:介绍了如何将图片、音频等资源嵌入到 Flex 应用中。 - **FXG...

    flex4 Spark Intranet Sample App

    例如,使用Spark VGroup和HGroup进行布局管理,使用Label和Button组件实现交互,使用List或DataGrid展示动态数据等。 其次,Flex4中的MXML和ActionScript 3.0的结合是另一个关键点。MXML是一种声明式语言,使得界面...

    flex skinning 机制实践

    Flex Skinning机制是Adobe Flex框架中的一个重要特性,它允许开发者为UI组件自定义外观和行为,从而实现应用程序的独特设计和交互体验。通过深入理解并实践Flex Skinning,开发者可以更灵活地控制用户界面的视觉样式...

    Flex4权威指南源代码

    12. **Mobile支持**:Flex 4扩展到了移动领域,Flex 4.5引入了针对Android和iOS设备的Air SDK,允许开发者创建跨平台的移动应用。 通过《Flex4权威指南》的源代码,开发者可以学习到如何有效地运用这些技术,从简单...

    flex4 视频教程截取的一些图片

    2. **Spark 组件架构**:Flex 4 引入了 Spark 组件集,与之前的 Halo 组件相比,Spark 组件更灵活,性能更高,并且支持更加丰富的视觉样式和动画效果。 3. **Skinning 和 Theming**:Flex 4 提供了强大的皮肤和主题...

    Flex4_Tutorials中文版

    7. **Spark Components**:Spark组件库包括一系列新的UI组件,如Button、Label、List等,这些组件更加现代,性能更好,并且与Halo组件兼容,方便开发者混合使用。 8. ** Cairngorm、BlazeDS和LiveCycle Data ...

    flex教程_chm

    在Flex 4.0版本中,引入了全新的Spark组件模型,与之前的 Halo组件相比,Spark组件提供了更高级的定制能力和更好的性能。此外,Flex 4.0还引入了Skinning和States机制,使得界面设计更加灵活,能够根据不同的应用...

    [Flash Builder 4 and Flex 4 Bible] Flex 4 宝典 配套代码

    Flex 4还引入了Skinning和 Theming系统,允许开发者创建和应用自定义界面主题,而不必深入到组件内部代码。通过分离表现和逻辑,开发者可以轻松地更改应用的视觉风格,以适应不同品牌或用户需求。 在Flex 4中,...

    Flex4.0中文API

    例如,Flex 4.0的Skinning和Styling机制让开发者可以定制组件的外观和行为,而不必深入到组件的源代码中。 此外,Flex 4.0还引入了Graphical User Interface(GUI)构建的新概念——Gumbo,后来被称为Flex 4。Gumbo...

    Flex4 中文API

    2. **Flex Component Hierarchy**:Spark组件库包含了一系列基础组件,如Button、Label、Layout等,它们构成了Flex UI的基础。每个组件都有自己的生命周期,包括creationComplete、initialize、render等关键阶段,...

    Flex4.0中文API.rar

    Spark组件包括基础组件(如Button、Label)以及更复杂的组件(如DataGrid)。 2. **MXML和ActionScript混合编程**:Flex 4.0允许开发者在MXML和ActionScript之间自由切换,MXML用于界面布局和组件声明,...

    flex4 实战 flex4 in action

    新的骨骼动画系统(Skinning and States)也是Flex 4的一大亮点,允许开发者通过状态管理轻松实现UI组件在不同场景下的动态变换。 本书将带领读者深入学习Flex 4的构建环境Flash Builder,讲解如何创建项目、编写...

Global site tag (gtag.js) - Google Analytics