# Really nice drop downs

**URL:** https://forum.kirupa.com/t/really-nice-drop-downs/13517
**Category:** Uncategorized
**Created:** [February 14, 2003, 5:02am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517 "2003-02-14T05:02:09Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![DDD](https://avatars.discourse-cdn.com/v4/letter/d/9fc348/32.png) [@DDD](https://forum.kirupa.com/u/DDD)
#### Post date: [February 14, 2003, 5:02am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/1 "2003-02-14T05:02:09Z")

</div>

I wanna try to make some drop down like the ones found here.  
[http://www.miniusa.com/crm/load\_mini.jsp](http://www.miniusa.com/crm/load_mini.jsp)

Can anyone point me to a tut or get me started with a fla. I would rather a tut because I want to learn how to do stuff like this. Any ideas…PLeeeeZ.

---

<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: [February 14, 2003, 6:02am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/2 "2003-02-14T06:02:19Z")

</div>

okay any tutorial on drop downs in MX?? Anyone??

---

<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: [February 14, 2003, 6:08am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/3 "2003-02-14T06:08:39Z")

</div>

How much of it do you need to know how to do? Everything from the buttons highlighted on the roll over, or just the drop down menu?

---

<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: [February 14, 2003, 6:28am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/4 "2003-02-14T06:28:22Z")

</div>

just the drop down menu. I know how to create buttons

---

<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: [February 14, 2003, 6:31am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/5 "2003-02-14T06:31:34Z")

</div>

Alright bro… I’ll see what I can figure out for you… Cheers…

---

<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: [February 14, 2003, 6:42am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/6 "2003-02-14T06:42:38Z")

</div>

much appreciation…

---

<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: [February 14, 2003, 6:56am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/7 "2003-02-14T06:56:00Z")

</div>

Hey 3D. I am very tired right now and I have never made one of these before, so my example is probably less than efficient, and I can’t even really explain well what I did.

Basically though…

I created a button, but I didn’t make it a button symbol, I made it a movie clip symbol.

Inside that movie clip symbol I have 3 layers.

1 is the main button  
Another is the mask shape  
And the last is the tween of the menu down clip.

The menu down clip is the clip that contains the buttons and background for your drop down.

My last step was to go back to the main timeline and selected the button and applied actions to it.

I know MX can use on handler on movie clips, but I found that using hitTest worked better, so I used this code…

```php
onClipEvent (enterFrame) {
	if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
		this.play();
		if (this._currentframe == 10) {
			stop();
		}
	} else if (this._currentframe>=10) {
		play();
	}
}

```

It checks if the mouse is over it, and if it is, it plays the tween down of the menu down clip to frame 10 (supposing frame 10 is the last frame of your tween down) and then it says if the mouse is not off of it and the frame is \>= to 10, then play the tween again so that it plays out.

I attached a sample, hopefully that helps. I am off to bed soon :sleep:

---

<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: [February 14, 2003, 6:56am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/8 "2003-02-14T06:56:28Z")

</div>

Crap, forgot the attachment…

---

<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: [February 14, 2003, 7:17am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/9 "2003-02-14T07:17:10Z")

</div>

That’s very sexy, Shane… Mind if I use your coding idea to write a tut? It seems Kirupa is lacking the popular drop down tut… By the way… I have been looking at your site… Love it, and the porfolio… I posted this question someplace else, but I forgot where, and don’t know if you saw it…

What did you use to create those images?

---

<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: [February 14, 2003, 7:20am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/10 "2003-02-14T07:20:22Z")

</div>

All my code is open source take it and do whatever you want with it 🙂

And yeah, I answered your question in the urgent help thread, but I will answer it again…

I use Photoshop 6 for some of my early ones (as my portfolio is full of images dating from the day I started Photoshop to now) and my newer ones use Photoshop 7.

I don’t have any other design programs other than Flash, which isn’t really design persay.

And thanks 🙂

---

<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: [February 14, 2003, 4:11pm UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/11 "2003-02-14T16:11:38Z")

</div>

thank you very mch gentlemen. I will check the .fla when I get to work. I may have some questions. So I hope you dont mind me asking them.

---

<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: [February 14, 2003, 5:31pm UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/12 "2003-02-14T17:31:31Z")

</div>

Ask away my friend.

---

<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: [February 14, 2003, 10:13pm UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/13 "2003-02-14T22:13:26Z")

</div>

that is exactly what I was looking for. Thanks a bunch L.I.B. Hey do you know anything about smartclips and how to make them. Some dude was telling me I should make that a smart clip. I know nothing of smartclips but I can research when I get home. But I was curious if you go give a primer on them…or anyone else for that matter.

---

<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: [February 14, 2003, 10:28pm UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/14 "2003-02-14T22:28:19Z")

</div>

smartclips are Flash 5s version of Components.

You can find tutorial on creating your own components at [www.flashcomponents.net](http://www.flashcomponents.net)

But beware, the coding involved in that is a bit advanced in a way. It takes A LOT of OOP (object oriented programming).

---

<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: [February 14, 2003, 10:30pm UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/15 "2003-02-14T22:30:25Z")

</div>

I think, I’m not sure though, that smartclips were Flash 5, and Components are a much better upgrade of them in Flash Mx.

---

<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: [February 14, 2003, 10:37pm UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/16 "2003-02-14T22:37:10Z")

</div>

Okay cool…I was just wondering…He mentioned it I think I will handle it this way. Once again thanks L.I.B you saved my biscuits.

---

<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: [February 14, 2003, 10:41pm UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/17 "2003-02-14T22:41:10Z")

</div>

No problem 3d 🙂 I am always glad to help if I am able to.

---

<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: [February 15, 2003, 12:41am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/18 "2003-02-15T00:41:37Z")

</div>

Best tute I’ve ever found is there:[http://www.kirupaforum.com/showthread.php?s=&threadid=10836](http://www.kirupaforum.com/showthread.php?s=&threadid=10836)

And someone at Bit-101 componentized a drop down menu:  
[http://www.bit-101.com/forum/viewtopic.php?t=908](http://www.bit-101.com/forum/viewtopic.php?t=908)

---

<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: [February 15, 2003, 4:29am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/19 "2003-02-15T04:29:26Z")

</div>

still using telltarget at the computer arts tutorial for drop down menus?? thought it didnt work for flash mx? or wasent it outdated syntax?

---

<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: [February 15, 2003, 4:30am UTC](https://forum.kirupa.com/t/really-nice-drop-downs/13517/20 "2003-02-15T04:30:06Z")

</div>

It still works in MX, but tellTarget is like Flash 4/5 syntax.

[Next page](https://forum.kirupa.com/t/really-nice-drop-downs/13517.md?page=2)
