On Wed, May 21, 2008 at 7:46 PM, Robert Csiki <[EMAIL PROTECTED]> wrote:
> I have a datagrid with objects. The item renderer contains an Image object
> that grabs the content via URL from a remote server.
>
> Whenever I scroll up and down, there are server calls to get the image
> content again. It slows down the application.

If the image is cached by the browser, you don't have actual server
calls. But the images still need to be reloaded in Flash, which can be
annoying.

So you can use your own in-memory cache. When you need to load the
image, first look in the cache (by the URL), and if it's available,
just use it.

Reply via email to