Помогите пож-то. Пишу загрузчик:

Код AS3:
Security.allowDomain("*");
Security.allowInsecureDomain("*");
var currentAppDomain:ApplicationDomain = new ApplicationDomain(null);
var loaderContext:LoaderContext = new LoaderContext(false, currentAppDomain);
var myRequest = new URLRequest("http://www.doublegames.com/swf/big-brain-wolf/big-brain-wolf.swf");
var myLoader = new Loader();
myLoader.load(myRequest, loaderContext);
addChild(myLoader);
Вот ошибка:
*** Security Sandbox Violation ***
Connection to file:///D|/Projects/Games/Примерчики/loader/Config.xml halted - not permitted from
http://www.doublegames.com/swf/big-b...brain-wolf.swf
-- Remote SWFs may not access local files.
*** Security Sandbox Violation ***
Connection to file:///D|/Projects/Games/Примерчики/loader/AnimLogo.swf halted - not permitted from
http://www.doublegames.com/swf/big-b...brain-wolf.swf
-- Remote SWFs may not access local files.
Util.SWFLoader :: onLoadError ** Target:_root.logoAnim_mc.DynamicSWF0_mc ErrorCode:IllegalRequest HttpStatus:0
Основной файл big-brain-wolf.swf он грузит и потом по видимому пытается подгружать Config.xml и AnimLogo.swf. Но почемуто грузит их относительно загрузчика. Что я не учел? Помогите пож-то.