well, i meant a "stop" of the streaming video connection, not the literal stop() function of the flash movie. Two completely different things.
In any case, here are some suggestions from your .fla file:
1. you are gonna have to name your instance of the media display component. This appears on the 5th frame on the layer called "Movie", not on the layer called "viewer" that has the tweening on it.
You notice of course that if your media player component is not actually on the first frame, but the 5th, then the media/video will not "actually" fade in. As it appears right now, your frame around the video (which you call "viewer" by name of the layer) fades in, and then when frame 5 is hit, the media player will be added to the mix inside the "viewer" and start buffering and bring in some video.
2. the name you give the instance of your media-display component is what you will use in actionscript to access the net_stream object and hook into it. you'll want to create an interval with setInterval() which will check (like every 50 mil for instance) to see if the "end" of the video has been reached. when it does, then your interval handler can call any variation of the code suggestions i had above for dealing with stopping/removing the video player.
** in any case, you are gonna need to have at least a basic-to-moderate understanding of actionscript to accomplish what you are hoping to do. If you are not familiar with it, stop first and go get yourself a good book on actionscript before going any further. Otherwise, most of what i'm saying probably makes no sense at all.
