Stopping Video?

I want to make several intro videos for my game. So far I have the video working and I can summon my menu screen with a keypress, but I cannot stop the video from looping over and over again. I tried loop() and the play functions with no success. How can I put in a condition to destroy the video and move onto the next item, like another movie or my titles? What functions do I use? Thanks in advance! :smiley:

interesting !
you need to call play() explicitly after setting the loop :

    movieTex.setLoop(0)
    movieTex.play()

otherwise it’s ignored.