Help needed

hihi

could any one help me on this i would like to the this thing move only for one round

i have attach a sample this the thing to it already

Please, use better titles for your threads.

onClipEvent (load) {
	var radius = 7;
	var speed = 5;
	_x = 243.8;
	_y = 173.7;
	var xcenter = this._X;
	var ycenter = this._Y;
	var degree = 0;
	var radian;
	var done = false;
}
onClipEvent (enterFrame) {
	if (!done) {
		degree += speed;
		radian = degree/(180)*Math.PI;
		this._x = xcenter+Math.cos(radian)*radius;
		this._y = ycenter-Math.sin(radian)*radius;
		if (degree == 360) {
			done = true;
		}
	}
}