I'm using the dialogue system a lot!

I am doing a cinematic using a Timeline.
I would like to pause the timeline when a dialog message appears.
When the message is completely written, press the continue button, and resume the cinematic.
I think probably I must use the sequencer: Timeline() , right?
Something like... :
SetContinueMode(false)_____________ remove the continue button
Timeline(pause,nameOfTimeline);_______ pause the timeline
fully written message ->Message(written);__ ( how do I this? send a message when the text is completed)

SetContinueMode(true)@Message(written)______________ active the continue button
Timeline(resume,nameOfTimeline);_______ (how resume the timeline when press continue?)

Thanks in advance!