I manna make an object trail

i wanna make an object ease after another object that is easing… like a motion trail…

but the objects just go to the corner of the screen…and won’t ease after each other… any help?

What do you mean?? with actionscript? You can have your motion on a layer, then dup the layer, and just move the the time over alittle that look like a trail.
I can make a real quick example.

Hey ubermensch_ver2,

I think this might help, maybe??? here is something that I put together real quick;)

there is also the thread http://www.kirupaforum.com/forums/showthread.php?t=65908&highlight=golden

it is really good for actionscript movement!!!

i want like a motion trail

I`m not entirely clear what you want, see if this is of any use.

sorry for not being precise on this post… um… i want to have a movieclip move by animation and have several action scripted movie clips follow its path… like a motion trail…

something like this?

Like this ?


balls = 15;
MovieClip.prototype.drawCircle = function(o) {
	this.lineStyle(20, o << 16, 100);
	this.lineTo(.45, .15);
};
MovieClip.prototype.follow = function(mc) {
	this.onEnterFrame = function() {
		tx = mc._x;
		ty = mc._y;
		this._x = tx-(tx-this._x)/1.5;
		this._y = ty-(ty-this._y)/1.5;
		if (Math.abs(tx-this._x)<1 && Math.abs(ty-this._y)<1) {
			this._x = tx;
			this._y = ty;
		}
	};
};
for (i = 0; i<balls; i++) {
	mc = this.createEmptyMovieClip("ball"+i, i+1);
	mc.drawCircle(i*balls);
	if (!i) {
		mc.onEnterFrame = function() {
			this._x = _root._xmouse;
			this._y = _root._ymouse;
		};
	} else {
		mc.follow(this["ball"+(i-1)]);
	}
}

last try

that’s cool