# Netstream move video forward or backward

**URL:** https://forum.kirupa.com/t/netstream-move-video-forward-or-backward/326467
**Category:** flash
**Created:** [December 16, 2011, 12:44pm UTC](https://forum.kirupa.com/t/netstream-move-video-forward-or-backward/326467 "2011-12-16T12:44:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![black\_pearl](https://avatars.discourse-cdn.com/v4/letter/b/aeb1de/32.png) [@black\_pearl](https://forum.kirupa.com/u/black_pearl)
#### Post date: [December 16, 2011, 12:44pm UTC](https://forum.kirupa.com/t/netstream-move-video-forward-or-backward/326467/1 "2011-12-16T12:44:39Z")

</div>

Hi,

I simply want to move a video forward and backword when it is already playing, but the seek method is not working properly. I can’t figure out, where the problem is.

I have two buttons (pluz\_btn and minus\_btn). Plus button is used to move half second forward and Minus button is used to go back half seconds.

The plus button is working but it is showing about is moving the video to about 3 seconds.

The minus button should move video backword. But it is also moving it forward.

```auto

streamTime_txt.text="0";
plus_btn.onRelease = function()
    {

        first_ns.seek(first_ns.time+.5);
        streamCount += 1;
        streamTime_txt.text = streamCount;
    };
    minus_btn.onRelease = function()
    {
        first_ns.seek(first_ns.time-.5);
        streamCount -= 1;
        streamTime_txt.text = streamCount;
    };

```

Thanks
