addEventListener

Hiya, Hopefully a simple one here…!

Im using caurnia transitions, and I am adding an onComplete handler to fire up a onEnterFrame Event.

I just cant seem to pass the object through to the ENTER FRAME function so I can do something with it …

Tweener.addTween(myObj, {x:10, time:1,onComplete:function() {this.addEventListener(Event.ENTER_FRAME, timer);} });	}
	
	function timer(e:Event):void
	{
		e.x += 1;
	}

Any ideas?! thank you!