views:

31

answers:

1

I've got HTML component as part of a datagroup itemrenderer which I need to resize the content of (there are lots of them).

This works quite well but the content looks really crusty. No font antialiasing. Even at 50% looks crusty.

I've considered generating thumbnails bitmaps on load 'complete', but that would be my last resort.

<mx:HTML location="{uri}" width="900" height="660" scaleX=".25" scaleY=".25" />

Any ideas?

Thanks a lot.

nic

A: 

I think the problem is with the HTML page. If you've designed the page, make sure that you have tested the page on various sizes (by resizing). Flex's mx:HTML simply renders what is in the HTML page.

A good HTML design includes ordering all page elements inside a table (with invisible borders) so that even when the page is resized, the elements won't get crusty.

Thanks,

Nirmal

Nirmal Singh Raja Reegan