Помогите разобраться из xml документа гружу вопросы и ответы+чекбоксы, после выбора и проверки вывожу alert c результатами, окно получается под текстом? Может когда я контейнер создаю с вопросами надо указать уровень??

Код AS1/AS2:
//----------------------------------------- Создаем вопросы --
function createQuestionnaire():Void{
rootNode = this.firstChild;
for(var i:Number=0; i<rootNode.childNodes.length; i++){
//КОНТЕЙНЕР
movie = _root.createEmptyMovieClip("mcQuestion"+i, _root.getNextHighestDepth());
//ТЕКСТ
movie.createTextField("tQuestion"+i, movie.getNextHighestDepth(), 0,0, 400,40);
//movie["tQuestion"+i].border = true;
movie["tQuestion"+i].selectable=false;
movie["tQuestion"+i].multiline = true;
movie["tQuestion"+i].html = true;
movie["tQuestion"+i].htmlText = rootNode.childNodes[i].attributes["Q"];
movie["tQuestion"+i].htmlText += "<b><u>Пожалуйста выбирите " + rootNode.childNodes[i].attributes["noCorrect"] + " вариант(а)</u></b>";
movie["tQuestion"+i].setTextFormat(tfQuestion);
movie._x = posX;
movie._y = posY;
//РАСТАВЛЯЕМ ЧЕКБОКСЫ
for(var j:Number=0; j<rootNode.childNodes[i].childNodes.length; j++){
checkbox = movie.attachMovie("mcCheckbox", "mcCheckbox"+j, movie.getNextHighestDepth());
checkbox.tAnswer.autoSize = true;
//----------------------------------не выделяем
checkbox.tAnswer.selectable = false;
//-----------------------------------
checkbox.tAnswer.text = rootNode.childNodes[i].childNodes[j].attributes["A"];
checkbox.isCorrect = rootNode.childNodes[i].childNodes[j].attributes["correct"];
aCheckboxes.push(checkbox);
checkbox._y = (j * 25)+50;
checkbox._x = 40;
}
posY += movie._height + 10;
}
}
//---------------------------------- Действия / функции ---------
mcSubmit.onRelease = checkAnswers;
mcAnswers.onRelease = showAnswers;
mcPlayAgain.onRelease = replay;
//----------------------------------------------------------
function checkAnswers():Void{
for(var i:Number=0; i < aCheckboxes.length; i++){
if(aCheckboxes[i].isCorrect == "true"){
if(aCheckboxes[i].cmpCheck.selected){
score++;
}
totalScore++;
}
}
//----------------------Активируем кнопки-----------
mcPlayAgain._visible = true;
mcAnswers._visible = true;
//----------------------Сообщаем результат
Alert.show("Вы выбрали " + score + " из " + totalScore + " правильных!!", " Ваш Результат!!!");
//----------------------Убираем кнопку ответа--------
mcSubmit._visible=false;