Суть вопрса в коде :

Код:
function s_Buffer( id, x, y )
{
_root.attachMovie( id, id + _global._lowerLevel, _global._lowerLevel, {_x:x, _y:y} );
this._mc = _root[id + _global._lowerLevel];
}
s_Buffer.prototype.receiveChildMessage() = function( msg )
{
trace( msg );
}
var testBuffer = new s_Buffer( "test", 10, 10 );
Код клипа "test" - кадр 1

Код:
this._parent.receiveChildMessage("some message");
Здесь родитель будет _root или testBeffer? И вообще правильно я понимаю суть _parent?