Dragable menu

i hav found a tutorial about dragable on ur site and i played w/ it for while, however, when i tried to make it go vertical instead of horizontal it doesnt work any more…

heres the code, can any1 explain to me whats wrong w/ it?

actionscripts under dragger, <drag>
onClipEvent (load) {
_y = _root.box._y-_root.box._height/2+_height/2 ;
_x = _root.box._x ;
yold = _y ;
}
onClipEvent (enterFrame) {
if (dragging) {
if((_root._ymouse>_root.box._y-_root.box._height/2) and (_root._ymouse<_root.box._y+_root.box._height/2)) {
_y = _root._ymouse ;
dydrag = _y - yold ;
}
}
}

action script under clipgeneral, <general>
onClipEvent (load) {
_x = _root.pos._x ;
_y = _root.pos._y -_root.pos._height/2+_height/2 ;
positiongeneral = _y ;
}
onClipEvent (enterFrame) {
dest = positiongeneral - _root.drag.ratio*_root.drag.dydrag ;
pos = this._y ;
this._y += (dest - pos) /7 ;
}

thx

wer is the tut?
ill do me best but wivout the original (an after a cuple beers) im not 2 much help im afraid! :wink: (plus i think im just a tad layzee ;))

Prophet.