Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/apache-flex/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
User interface 我可以用PS文档制作Flex/Flash Builder皮肤吗?_User Interface_Apache Flex - Fatal编程技术网

User interface 我可以用PS文档制作Flex/Flash Builder皮肤吗?

User interface 我可以用PS文档制作Flex/Flash Builder皮肤吗?,user-interface,apache-flex,User Interface,Apache Flex,我正在使用FlashBuilder开发一个web应用程序。一位平面设计师为该应用程序设计了一些设计,但我从未将photoshop文档转换为Flex skin,也从未以任何方式制作过定制Flex skin。有没有可能把photoshop的作品放进Flash或者别的什么东西?Flex皮肤到底有什么特点 如果我联系这个人,我希望在一个8页的应用程序上花多少钱?如果有人遇到同样的问题,我发现创建一个新的mxml皮肤类将允许您设置一个.jpg或.gif,并使用以下内容设置组件的背景: 皮肤等级: <

我正在使用FlashBuilder开发一个web应用程序。一位平面设计师为该应用程序设计了一些设计,但我从未将photoshop文档转换为Flex skin,也从未以任何方式制作过定制Flex skin。有没有可能把photoshop的作品放进Flash或者别的什么东西?Flex皮肤到底有什么特点


如果我联系这个人,我希望在一个8页的应用程序上花多少钱?

如果有人遇到同样的问题,我发现创建一个新的mxml皮肤类将允许您设置一个.jpg或.gif,并使用以下内容设置组件的背景:

皮肤等级:

<s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:mx="library://ns.adobe.com/flex/halo" 
    xmlns:s="library://ns.adobe.com/flex/spark">

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

  <s:states>
      <s:State name="normal" />
      <s:State name="disabled" />
  </s:states>

<!-- This image fill also specifies padding around it -->
  <s:Rect id="backgroundRect" left="100" right="100" top="20" bottom="20">
      <s:fill>
          <s:BitmapFill source="@Embed('assets/wood-bg.png')"/>
      </s:fill>
  </s:Rect>    

  <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0" />
</s:SparkSkin>

[主机组件(“spark.components.Application”)]
MXML组件:

<s:VGroup horizontalCenter="0" verticalCenter="0">
    <s:Label text="Wood Sales Int'l" fontSize="42" />
    <s:BorderContainer borderColor="0x000000" borderWeight="3" cornerRadius="7" horizontalCenter="0" verticalCenter="0">
        <s:VGroup>
            <mx:Form fontSize="16">
                <mx:FormItem label="Userid:">
                    <s:TextInput id="userid"/>
                </mx:FormItem>
                <mx:FormItem label="Password:">
                    <s:TextInput id="pw"/>
                </mx:FormItem>
                <mx:FormItem>
                    <s:Button label="Login"/>
                </mx:FormItem>
            </mx:Form>
        </s:VGroup>
    </s:BorderContainer>
</s:VGroup>

我从Tour de Flex的Flex 4>编码技术中找到了此信息和代码示例。