I'm trying to produce a Flash 7 project using a media controller for flv's and I don't want to use the generic media controller that comes with Flash MX 2004 and make my own instead of trying to skin that beast. I've got buttons working just fine for Play, Stop, Pause, Mute and Back to beginning but not true Fast Forward and Rewind. I've found this to be the closest to what I want:

rwd_btn.onPress = function() {
ns.seek(ns.time - 1);
ns.play();
}
ff_btn.onPress = function() {
ns.seek(ns.time + 1);
ns.play();
}

But it only rewinds or ff's one second and then starts the video again. In other words, I want it where as long as the button is pressed, it continually rewinds or fast forwards the flv until it reaches the beginning or end, appropriately. Any idea how to make this work?