Text displays during animation

I have an object that allows you to click on it, then an animation plays of your person investigating it. Is there a way to add a little word box to the bottom of the screen, that tells what your person is saying? It would be nice if this was possible to do in an animation event, so I could time it perfectly.

Thanks in advance

Hello,
you can check the animation[“animationName”].time. (This variable represents the time that your animation is). So you can check the time that you want the text to come in, and do something like this:

if(animation["animationName"].time == timeForTextToComeIn){

//Code to active Text

}

Take care !