loadMovie and then using the variables from that loadedmovie

If I run this on flash1.swf

_root.container.loadMovie("enemy.swf");

Then on the second one I have a movie clip with this

onClipEvent (load) {
	_root.enemyname = "Dragon";
	_root.enemydef = 5;
}

Then back on flash1.swf why can’t I do trace(_root.enemydef); I get undefined.