This is what I have…
and the problem is that if I roll over any button the last will become Alpha = 100
and the rest just stays the way it was :s
[AS]
for(i=0; i<10; i++){
item = _root.attachMovie(“blok”, “blok” + i, i)
item._y = i*20
item._alpha = 30
item.onRollOver = function(){
item.useHandCursor = false
item._alpha = 100
item.textBox.color = "0x00FF00 "
}
item.onRollOut = function(){
item.useHandCursor = false
item._alpha = 30
item.textBox.color = "0x00FF00 "
}
}
[/AS]