attachMovie problem - Need help
I'm trying to make a statusbar thing, each time you press the button, it attaches a new Movieclip. But it will only attach 1, then that 1 just moves down each time I press it.
function StatusTextUpdate() {
AmountVisible++;
root.menus.attachMovie("StatusUpdate", "StatusUpdate_"+AmountVisible, 1, {_x:-330.00,_y:20 * (AmountVisible) + (-500) });
}
I want it so it adds another 1 each time its pressed. Could someone show me how I can do this?