>Thanks for this - been looking at it for a week now but still no joy.
Could you specify what kind of problems do you have?

>Is it possible to apply a pure AS skin directly to component? 
Yes, you just have to add the skin class to your component:
<<s:ButtonBar skinClass="skins.CustomButtonBarSkin" >

>Any further pointers would be much appreciated. 
- Download all files inside the ios7 skin package that begins with
ButtonBar*, don't forget the "assets" folder [1]
- Create a test project
- Copy the downloaded files to your project 
- Adjust the "import" statements inside the downloaded files where it's
needed
- Create a simple test case [2]
- Check if it already works
- If not, you maybe have to update other dependencies to 4.15.

HTH,
Olaf

[1]
https://github.com/apache/flex-sdk/tree/eec643c453a3a1bec6ea3352b0c94ec81d36b2d6/frameworks/projects/mobiletheme/src/spark/skins/ios7

[2] Simple test case:
<<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"; 
                           xmlns:s="library://ns.adobe.com/flex/spark" 
applicationDPI="160">
        
        <s:ButtonBar skinClass="path.to.your.local.ButtonBarSkin" >
                <s:ArrayCollection>
                        <fx:String>One</fx:String> 
                        <fx:String>Two</fx:String> 
                        <fx:String>Three</fx:String> 
                        <fx:String>Four</fx:String> 
                </s:ArrayCollection>
        </s:ButtonBar>
<</s:Application>



--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/iOS7-skins-tp13507p13623.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to