# Pause publishing to the server

**URL:** https://forum.kirupa.com/t/pause-publishing-to-the-server/243306
**Category:** flash
**Created:** [November 5, 2007, 4:34pm UTC](https://forum.kirupa.com/t/pause-publishing-to-the-server/243306 "2007-11-05T16:34:32Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![lunetics](https://avatars.discourse-cdn.com/v4/letter/l/c2a13f/32.png) [@lunetics](https://forum.kirupa.com/u/lunetics)
#### Post date: [November 5, 2007, 4:34pm UTC](https://forum.kirupa.com/t/pause-publishing-to-the-server/243306/1 "2007-11-05T16:34:32Z")

</div>

Is there a good way of pausing a recording to a streaming server in AS3.

In AS2 you could just do this:

```auto

// Pause
netStreamOut.publish(false);

// Resume
netStreamOut.publish(filename, "append");

```

But in AS3 there´s no publish(false). Well you could close the stream and then opend a new one and then do append, but I don´t want to close the active stream. It feels unnecessary. Or what? 😟
