//this would be the input text from the user
//normally I would replace this with the split version
removeEventListener(Event.ADDED_TO_STAGE, init);
var tField:TextField = new TextField()
tField.text = "The world is mine"
tField.border = true
tField.x = 100
tField.y = 100
tField.width = 150
tField.height =20
var myFmt = new TextFormat()
myFmt.size = 18
//myFmt.autoSize = true
tField.setTextFormat(myFmt)
addChild(tField)
var arr:Array = tField.text.split("")
var arc = 45/360//arr.length
var alpha = 0
var xCenter = tField.x + tField.width / 2
var yCenter = tField.y + tField.height/2
for (var i:int = 0; i < arr.length; i++)
{
var t:TextField = new TextField()
t.x = xCenter + 150 * Math.cos(alpha)
t.y = yCenter + 150 * Math.sin(alpha)
t.text = arr[i]
addChild(t)
alpha += arc
}