I’m trying to create a menu that slides around with this bit of actionscript, it’s an earlier version but I would really like to convert it to 3.0, but at this stage in the game I don’t have a real idea on how to do it. I’d really appreciate it if anyone would be willing to help out and convert this over to 3.0 for me, I’ve been trying for awhile now, but am completely lost.
nome_starty = eval(this._parent)._y;
nome_movedy = _parent._parent[“nome” + _parent.n]._y + _parent._parent[“nome” + _parent.n].mask._height + 20 - nome_starty;
eval(this._parent)._y = nome_starty + nome_movedy / 3;
_parent.name = this._parent._name;
_parent.n = Number(_parent.name.charAt(4)) - 1;
mask_starth = eval(_parent.mask)._height;
mask_movedh = _parent.mask_targeth - mask_starth;
eval(_parent.mask)._height = mask_starth + mask_movedh / 4;