Ciao, io ho uno script che instruisce un movie clip contenente una serie di i mmagini (che saranno i bottoni del menu) orrizzontalmente.
Come lo trasformo in modo che sia verticale? (il flash movie è di 800*600).
Allego lo script:

xm = 0;
//function to set the xpos of the movieclip
function xpos(bar_length,mul)
{
hpos = 50;
scroll_length = 600;
incr = bar_length/scroll_length;
xm = _xmouse;
if(_xmouse <= 10){xm = 10;}
if(_xmouse >= 400){xm = 400;}
scroll_x = hpos - xm;
scroll_x = scroll_x * mul;
x_pos = scroll_x * incr;
x_pos = x_pos + hpos;
return x_pos;
}

_root.onEnterFrame = function ()
{
if(_ymouse > 230 & _ymouse < 470) {
// call function xpos
x_pos = xpos(1200,.75);
with (menu)
{
_x += (x_pos - _x)*.2;
}
}
}

Grazie in anticipo, Franz