Easy Object Question


_global.SomeObject = function() {
	this.createEmptyMovieClip("mcHolder_mc", 1);
	this.mcHolder_mc.createEmptyMovieClip("mcLoader_mc", 2);
	this.mcHolder = mcHolder_mc;
	this.mcLoader = mcHolder_mc.mcLoader_mc;
};
SomeObject.prototype.testFunction = function() {
	trace(this.mcHolder);
	trace(this.mcLoader);
};
so = new SomeObject();
so.testFunction();

Sorry for my other long lame posts, this is a summation of the problem I’m having.

Why do the two trace statements render ‘undefined’?