# Pausing external swf

**URL:** https://forum.kirupa.com/t/pausing-external-swf/292381
**Category:** Uncategorized
**Created:** [July 13, 2009, 7:21pm UTC](https://forum.kirupa.com/t/pausing-external-swf/292381 "2009-07-13T19:21:54Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Hausnfranz](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/hausnfranz/32/2427_2.png) [@Hausnfranz](https://forum.kirupa.com/u/Hausnfranz)
#### Post date: [July 13, 2009, 7:21pm UTC](https://forum.kirupa.com/t/pausing-external-swf/292381/1 "2009-07-13T19:21:54Z")

</div>

This code loads an external intro movie, and allows me to remove it when I hit the back button. I was wondering how I can add another button that pauses/plays the introPage.swf at whim from the container .swf file?

```auto

function init() {
    holder.loadMovie("introPage.swf")
    intro_btn._visible = false;
}
init();

home_btn.onRelease = function() {
    holder.unloadMovie("introPage.swf")
    intro_btn._visible = true;

};

```
