# Help Buttons

**URL:** https://forum.kirupa.com/t/help-buttons/23118
**Category:** flash
**Created:** [June 13, 2003, 12:28am UTC](https://forum.kirupa.com/t/help-buttons/23118 "2003-06-13T00:28:02Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![gmpk](https://avatars.discourse-cdn.com/v4/letter/g/ac91a4/32.png) [@gmpk](https://forum.kirupa.com/u/gmpk)
#### Post date: [June 13, 2003, 12:28am UTC](https://forum.kirupa.com/t/help-buttons/23118/1 "2003-06-13T00:28:02Z")

</div>

How do i make it so when i click a button in a box, on the other side of the box make a movie clip load???

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 13, 2003, 1:00am UTC](https://forum.kirupa.com/t/help-buttons/23118/2 "2003-06-13T01:00:37Z")

</div>

If you want to load a movie do this:

```php

on (release) {
	loadMovieNum("blabla.swf", 0);
}

```

But for some reason I think you really want:

```php

on (rollOver) {
	box.gotoAndStop(2);
}
on (rollOut) {
	box.gotoAndStop(3);
}

```

The last is just controlling the _in and out_ animation of a movie clip called _box_
