hi everybody
I am using the accordeon menu http://www.visual-blast.com/flash/accordion-style-flash-menu/
I made a textbox which appears from alpha = 0 to alpha = 50 and i would like to load different texts into it
is it beter to do with xml ?
i have tried to do with textbox+i but it didnt work
any ideas???
top();
speed = 10;
initial_width = 133;
target_width = 800;
sp = rect1._x;
this.createEmptyMovieClip(“emptymc”, 0);
emptymc.onEnterFrame = function() {
for (i=1; i<=6; i++) {
if (_root.hit.hitTest(_root._xmouse, _root._ymouse, true)) {
if (_root[“rect”+i].hitTest(_root._xmouse, _root._ymouse, true)) {
new_x = (_root.sp-(133*(i-1)))-rect1._x;
rect1._x += new_x/speed;
n_width = target_width-_root[“rect”+i]._width;
_root[“rect”+i]._width += n_width/speed;
_root[“movie”+i].textbox._alpha=50;
} else {
n_width2 = initial_width-_root[“rect”+i]._width;
_root[“rect”+i]._width += n_width2/speed;
_root[“movie”+i].textbox._alpha=0;
}
} else {
new_x = _root.sp-rect1._x;
rect1._x += new_x/(speed+50);
n_width2 = initial_width-_root[“rect”+i]._width;
_root[“rect”+i]._width += n_width2/(speed-1);
_root[“movie”+i].textbox._alpha=0;
}
_root[“rect”+(i+1)]._x = _root[“rect”+i]._x+_root[“rect”+i]._width;
_root[“movie”+i]._x = _root[“rect”+i]._x-1;
}
};