I am running a program which generates a sequence of outputs using Graphics. I would like these to display in a separate window. Each successive output should replace the previous one. That is, the outputs are like the frames in a movie. I would like to be able to interrupt the sequence of displays at will to inspect how the outputs are changing. Thank you for any advice.
I think you're looking for Animate.
If you already have an array of graphics, you can use the following:
Animate[Show[myArray[[frame]]],{frame,1,Length[myArray],1}]