Object problem

I’m working with a tutorial, and I can’t get my movie clip to shift across the stage with the _x++ property, even though I have the exact same code as the gentlemen giving the tutorial. anyone know what the problem might be?

here is the flash document
www.verseonedesign.com/problem.fla


var myRaptor:Object = {
			mc : _root.raptor_mc ,
			go : function () { this.mc._x++; }
	};

_root.OnEnterFrame = function() {
		_root.myRaptor.go();
};

thank you very much in advance if anyone has an opportunity to check this out.

  • Fitz