360-Spin

Can someone help me out with this please ok i use this to make an object spin in a circle

onClipEvent (load) {
this._rotation = 10;
_x = 260;
_y = 190;
}
onClipEvent (enterFrame) {
if (this._rotation<360) {
;
}
this._rotation += 5;
}

Now what i need to know is how can i make a sentence for example “welcome to blah blah blah blah” go around in a circle i already try using Dynamic text and wrap the word but only thing i get is the whole sentence just going around with out going around following each other.

Also i need to know how to make an object spin in an 360 degree sorta like sureshot’s site. :thumb:

[AS]myClip.onEnterFrame = function() {
speed = 18;
// 360 must be divisible by speed
//positive rotates CW, negative CCW
(360%speed == 0) ? speed : speed=null;
if (angle>=360 || angle<=-360) {
this.onEnterFrame = null;
} else {
angle += speed;
this._rotation = angle;
}
};[/AS]

Thx alot.

welcome :thumb: