Загружаю через Loader какую-то swf.
Далее ставлю положение по обеим координатам 0.
А получается, что некоторые swf уезжают немного вверх... Из-за чего? И как с этим бороться?

Код AS3:
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT, initListener);
var context:LoaderContext = new LoaderContext();
if (flash.system.Security.sandboxType!='localTrusted') context.securityDomain = flash.system.SecurityDomain.currentDomain;
context.applicationDomain = flash.system.ApplicationDomain.currentDomain;
var req:URLRequest = new URLRequest(GamePanel.domainGif + id + ".swf");
loader.load(req, context);
function initListener(e: Event) {
loader.x = 0;
loader.y = 0;
loader.content.x = 0;
loader.content.y = 0;
addChild(loader);
}