スキン クラスを使用して、背景画像を含むアプリケーションを作成しました。アプリケーションで画像の上にいくつかの画像を表示したい。Flex 4でそれを行う方法を提案していただけますか。コードは次のとおりです:
BackGroundImageskin:-
<fx:Metadata>
[HostComponent("spark.components.supportClasses.SkinnableComponent")]
</fx:Metadata>
<s:states>
<s:State name="normal" />
<s:State name="disabled" />
</s:states>
<s:BitmapImage source="@Embed('Img/asianwoman.jpg')" left="0" right="0" top="0" bottom="0" smooth="true"/>
主な用途:-
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Group visible="true">
<mx:Image source="Img/News1.png" visible="true" />
<s:Button label="My Button"/>
</s:Group>
ここで New1.png は表示されず、背景画像のみが表示されます