Как я могу это сделать? Вот что у меня есть:
function send(input):void{
// input.text = "{key: 'value'}"
var x:* = stringToObject(input.text)
// then be able to do this
var y:* = x.key;
// then y must be equal to 'value'
trace(y) // this is just a string
}