# Actionscript Menu Help

**URL:** https://forum.kirupa.com/t/actionscript-menu-help/119353
**Category:** Uncategorized
**Created:** [August 13, 2004, 6:47pm UTC](https://forum.kirupa.com/t/actionscript-menu-help/119353 "2004-08-13T18:47:09Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![birdboy0103](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@birdboy0103](https://forum.kirupa.com/u/birdboy0103)
#### Post date: [August 13, 2004, 6:47pm UTC](https://forum.kirupa.com/t/actionscript-menu-help/119353/1 "2004-08-13T18:47:09Z")

</div>

I need to create a menu that has dynamic content. It’ll be in a button until you click it, when extended, i want it to stay open until you either click outside the menu, or click something in the menu.  
Thanks in advance…

---

<div class="post-metadata">

### Author: ![lastchance](https://avatars.discourse-cdn.com/v4/letter/l/f04885/32.png) [@lastchance](https://forum.kirupa.com/u/lastchance)
#### Post date: [August 13, 2004, 8:00pm UTC](https://forum.kirupa.com/t/actionscript-menu-help/119353/2 "2004-08-13T20:00:11Z")

</div>

well firstly make the movie clip so that in frame 1 the menu is in the closed position and put a stop(); right here and name the frame “closed”. then, make the second frame of the movie clip the menu in the open position and also put a stop(); and name the frame “open” . Now place these actions on the movie clip as a whole…

```auto
 
on(press) {
	this.gotoAndStop("open");
}
on(releaseOutside) {
	this.gotoAndStop("closed");
}

```

anything else can be added easily once you know this.

---

<div class="post-metadata">

### Author: ![birdboy0103](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@birdboy0103](https://forum.kirupa.com/u/birdboy0103)
#### Post date: [August 15, 2004, 3:39pm UTC](https://forum.kirupa.com/t/actionscript-menu-help/119353/3 "2004-08-15T15:39:27Z")

</div>

the way you told me to do it, i have to hold the mouse button, and release on the link, i wanted it to work like the multi-box component, where you click, it opens and stays open, until you release on a link, or move outside of the menu’s edge.

---

<div class="post-metadata">

### Author: ![birdboy0103](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@birdboy0103](https://forum.kirupa.com/u/birdboy0103)
#### Post date: [August 16, 2004, 8:15pm UTC](https://forum.kirupa.com/t/actionscript-menu-help/119353/4 "2004-08-16T20:15:07Z")

</div>

isnt someone gonna help???

---

<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: [August 17, 2004, 9:43pm UTC](https://forum.kirupa.com/t/actionscript-menu-help/119353/5 "2004-08-17T21:43:49Z")

</div>

> [@birdboy0103](#):
>
> isnt someone gonna help???

Let’s see the code you tryed. You can’t expect someone to just bust out an example for you.

Help yourself first and others with be more then willing to help when you run into trouble 😉
