Flash Loaded Movie Clip Problem

flash

If anyone feels this question is inapropriate please remove it or notify me and I will.

Im having trouble figuring out this one, Im loading several movieclips into one. One movieclip as the base of the website and the others as individual pages. My problem is that now 3 of those movie clips when loaded appear to have been put off by a pixel or two which makes the text all blurry (pixel font).

I've confirmed that my "container" mc is at x0.0 and y0.0 and that all of the elements in the loaded movieclip are at precise numbers like: 192.0 34.0 not 123.5 or 34.6.

Suggestions are most welcomed 😉

EDIT: I've tried swapping the loaded MC for another one which displays fine and it did, so the problem must be within the loaded swf itself. Since by playing the loaded swf (the one who gets blurry) alone all appears fine and all positions are at .0 I cant really figure out whats going on.

UPDATE: I tried exporting for flash player 7 and it solved the issue any other version above will not work, can anyone provide insight on why this is happening?

Best Answer

Are you making sure to set your mc to not scale as well as be TL aligned? do a trace to make sure that they're sitting on a pixel relative to the stage:

trace(root.stage.container.x) //as3 or
trace(_root.container._x) //as2
Related Topic