vote up 0 vote down star

In Flex, I'm using an HBox to hold thumbnails. When more thumbnails are added than can be shown, the HBox becomes scrollable.

When I add more than, say, 80 images, when I scroll back to the first image, the images begin "tearing", until I hover my mouse over them.

This is how it looks when few images are added:

Expected

When many images are added:

Buggy

Should I be using something other than an HBox to accomplish this?

flag

50% accept rate

2 Answers

vote up 3 vote down check

HBox doesn't use virtual renders so I'd actually recommend a List based control like HorizontalList. You may also want to use Ely Greenfield's SuperImage to avoid flicker when scrolling.

link|flag
Thanks, didn't know about the list controls! – Rhys Causey Apr 2 at 23:41
vote up 1 vote down

Use a TileList. It can use ItemRenderers which uses fewer resources.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.