# Slow down A mc without affecting the whole scene

**URL:** https://forum.kirupa.com/t/slow-down-a-mc-without-affecting-the-whole-scene/135407
**Category:** Uncategorized
**Created:** [January 27, 2005, 4:04am UTC](https://forum.kirupa.com/t/slow-down-a-mc-without-affecting-the-whole-scene/135407 "2005-01-27T04:04:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rapski85](https://avatars.discourse-cdn.com/v4/letter/r/aeb1de/32.png) [@rapski85](https://forum.kirupa.com/u/rapski85)
#### Post date: [January 27, 2005, 4:04am UTC](https://forum.kirupa.com/t/slow-down-a-mc-without-affecting-the-whole-scene/135407/1 "2005-01-27T04:04:09Z")

</div>

Hey guy’s,

I have a scene where various mmc are playing. I want to pause one of these mc Only for about 10sec’s?

my current code at end of play head for this mc:

```auto
 start = getTimer();
while (start+10000>now) {
now = getTimer();
}
gotoAndPlay(26);

```

it works…but it freezes the whole movie!!! i only want that single mc to pause. How do i designate it? is there a different way of doin this?

Thanx in advance!
