
Originally Posted by
hyk
Hi, here a screenshot i took. spend some time looking for a bmp converter

I see what you mean. I really don't think that looks bad though. I'd opt for keeping the logos at their original dimensions in lieu of resizing them to fix an arbitrary size.
I see two problems here.
1) The logotypes (text logos) don't have a set height for the type. So if you were to resize them, you wouldn't know what to resize them to (unless you use transparent .pngs with all white space trimmed).
2) I'm not sure if your marquee can handle elements of variable width. I forget if you're bringing the images in dynamically or if they're hard-coded into the .swf.
If having a uniform size is important to you, I'd suggest doing it external of Flash. Yes, it means extra work but that's the only way to achieve a professional result.
If you still want to do it within Flash, here's the basic syntax with mc_tween.
Code:
#include "mc_tween2"
logo_mc.yScaleTo(percentage, time(in sec), animation type);
or
Code:
#include "mc_tween2"
logo_mc.resizeTo(width, height, time, animation type);
Using only the first will give you a distorted image. You'll also have to use xScaleTo if you want to maintain the proportions.
Bookmarks