Adicione tinymce a nova área de texto dinamicamente

Como posso fazer iss

function addTinyText(id, text){
//add textarea to DOM
$('<textarea id="txt'+id+'"></textarea>').append(text).appendTo('body');
//init tineMCE
 tinyMCE.init({
        theme : "advanced",
        plugins : "emotions,spellchecker"
});
//add tinymce to this
tinyMCE.execCommand("mceAddControl", false, 'txt'+id);
}

mas, como resultado, sempre que temos uma nova área de texto + tinyMCE, mas não há texto dentro

O que eu faço de errado?

questionAnswers(4)

yourAnswerToTheQuestion