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 breakpoint inside that method. You need to find an event to use that is invoked each time the component is shown. When that event fires, invoke the method. I have been purposely vague so that you can find the fix on your own so that you learn how to do it in the future. Everything you need to know is contained above. Only one line needed to be added to your code to make it work. --- In [email protected], venkat eswar <cooler...@...> wrote: > > > > 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, > Venkat >

