[flexcoders] Re: Image not loading

2010-01-28 Thread myflexdownloads
Try invalidating the tile list. Also see if calling validateNow() on the tile list helps...it is usually required when you change item renderers but it does not seem like you are changing renderers. FlexDownloads.com Web Admin --- In flexcoders@yahoogroups.com, venkat eswar cooler...@...

[flexcoders] Re: Image not loading [1 Attachment]

2010-01-27 Thread venkat eswar
Hi , I am newbie in Flex.In my application when i click gallery1 button image s are loading in the tilelist container.But when i click the back button and then click the gallery2 button, previously loaded images are displaying. What i am missing. Please help me to solve this issue.. Thanks,

[flexcoders] Re: Image not loading

2010-01-27 Thread valdhor
Again, this was simple to track down. You need to hone your debugging skills. The problem is that you have your loadGallery method invoked on the initialize event. This only happens once so the next time that component loads, the method is not invoked. This can be seen easily by placing a

[flexcoders] Re: Image not loading

2010-01-22 Thread valdhor
The problem is in your Main.mxml file. You have two LoadImage components but only one is displayed (The MXML one). You need to remove the MXML component altogether and add the ActionScript component to the display list. So, Change these lines: mx:VBox width=100% height=100%