Hi,

How to call a movieclip in function and pause initial mc?

example :

for(var i = 0 ; i < demande[ranQuestion][5].length ; i++){
nextResponse();
duplicateMovieClip("box.answer","answer"+i,i)
box["answer"+i].y_fin = answer0._y + (20*i)
box["answer"+i].txt = demande[ranQuestion][5][ranAns]
if(ranAns == demande[ranQuestion][4]){
box["answer"+i].thisChoice = true
} else {
box["answer"+i].thisChoice = false
}
}
box.answer._visible = 0
}

I would like to call a movie named "wrong" and pause the initial mc named "box" mc. When you strike "space bar" key or hit a button named "space" during playing "wrong" mc the "box" mc continue .

Thanks for response .

Stef