moving 2 movieclips
moving 2 movieclips
Out of context: Reply #9
- Started
- Last post
- 32 Responses
- legspin0
on button:
on (release) {
this.targetX = 200;
}in movieclip:
// move across screen
startX = this._x;
newX = _parent.targetX;
destX = startX+((newX-startX)/9);
this._x = destX;