Can you post your CustomAppSkin as well?  I'm guessing that the BitmapImage
is added after the content group.  In which case your BitmapImage will be
drawn last hence covering your content group.

On Mon, Aug 21, 2017 at 1:38 PM, <trev...@mchsi.com> wrote:

> For the life of me I can't figure this out. I skinned a
> WindowedApplication with a background image. Added a group of buttons,
> however I can't seem to get them to layer properly over the background
> image of the WindowedApplication component.
>
>
> image in the skin
>         <s:BitmapImage width="100%" height="100%"
> source="assets/randomBkgd.png" />
>
>
> <?xml version="1.0" encoding="utf-8"?>
> <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009";
>                                            xmlns:s="library://ns.adobe.
> com/flex/spark"
>                                            xmlns:mx="library://ns.adobe.
> com/flex/mx"
>                                            skinClass="utilities.
> CustomAppSkin">
>
>         <s:layout>
>                 <s:BasicLayout />
>         </s:layout>
>
>         <s:Group x="10" y="10" width="400" height="25">
>                 <s:layout>
>                         <s:HorizontalLayout />
>                 </s:layout>
>
>                 <s:Button label="Button1" width="100" height="25" />
>                 <s:Button label="Button2" width="100" height="25" />
>                 <s:Button label="Button3" width="100" height="25" />
>
>         </s:Group>
>
>
>
> </s:WindowedApplication>
>

Reply via email to