
September 18th, 2011, 07:46 PM
|
|
Contributing User
|
|
Join Date: Nov 2004
Posts: 55
Time spent in forums: 10 h 57 m 21 sec
Reputation Power: 0
|
|
|
Flex - List Control
Hi,
I want to set a background image to a list control. I have a listcontrol that has an item renderer.
Code:
<mx:Application backgroundImage = "someImage">
<mx:VBox>
<mx:List itemrenderer="abc"/>
<mx:VBox>
<!--abc-->
<mx:Canvas>
<mx:HBox>
<mx:image="an arrow image"/>
<mx:Label/>
</mx:Canvas>
I want a background image that applies to the whole screen to be applied to the List control as well, but the area that is covered by list is appearing white. I want the same image to be applied to list control also. I tried applying backgroundImage to the itemrenderer giving it the same image but still not able to get the image.
How can I have the same image applied that is applied to the whole screen gets applied to the list also.
thanks
Last edited by Tann San : September 19th, 2011 at 04:00 AM.
|