I used this script to call a video:
_____

stop ();
var nc = new NetConnection();
nc.connect(null);
var ns = new NetStream(nc);
videoContainer.attachVideo(ns);
ns.play("movie.flv");

_____

Since the video is being called by a script to appear in a "container," and is not a movie clip object, then I don't know how to use actionscript to control the actual flv playback with buttons (i.e. play, pause, stop).

Any suggestions?

Thanks!