Вот полный код считай
Основная флешка

Код AS3:
private function risC(e:Event) {
var lom:Loader = new Loader();
lom.load(new URLRequest('ris.swf'));
lom.contentLoaderInfo.addEventListener(Event.COMPLETE, wi)
addChild(lom)
}
private function wi(e:Event) {
e.target.content.DATA = '6666666';
}
Подгружаемая

Код AS3:
public function RisMain() {
if (stage) construct(null)
else this.addEventListener(Event.ADDED_TO_STAGE, construct);
}
private function construct(e:Event = null):void
{
this.removeEventListener(Event.ADDED_TO_STAGE, construct);
trace(DATA); // undefined а надо 6666666
}