# Sliding menu speed

**URL:** https://forum.kirupa.com/t/sliding-menu-speed/181139
**Category:** flash
**Created:** [March 6, 2006, 8:58pm UTC](https://forum.kirupa.com/t/sliding-menu-speed/181139 "2006-03-06T20:58:38Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![hall08](https://avatars.discourse-cdn.com/v4/letter/h/8baadc/32.png) [@hall08](https://forum.kirupa.com/u/hall08)
#### Post date: [March 6, 2006, 8:58pm UTC](https://forum.kirupa.com/t/sliding-menu-speed/181139/1 "2006-03-06T20:58:38Z")

</div>

Can anyone point out where a control for the speed either is or can be inserted for the sliding menu. Cudos to the original developer of this menu. I adapted it to fit our needs:  
[http://www.massageheights.com/entry\_viewer.html](http://www.massageheights.com/entry_viewer.html)

Here is the current code for the entry piece:

```auto
// This sets the position of the clip when you start
onClipEvent (load) {
	_root.xnew = _root.mask2._x+(-6.25-1)*100/2;
}
// Pretty much obvious. The destination is controlled by the small clip. That little
// clip is made out of invisible buttons that give a destination interpreted by the
// function move ()
onClipEvent (enterFrame) {
	move();
}

```

TIA!
