I have some problems regarding the fla ---please check it for me

Can you tell me what’s the problem within my fla?

http://www.hk2168.com/geneinfo.fla

I want to put different words when mouse move over the buttons,
just now the button can only load one word…

Thank you

you could make seperate button symbols for each button, or you make a blank button, and add the text on manually… then add actionscript to each button

i see you added the txt only on the over state… you will have to create seperate symbols for each button then… just make duplicate copies of the button, edit each button’s text…

select a button on the stage and just replace it with another button… it will keep the coding (select the button on the stage… use the swap option in the properties bar)

The other way to do this is actionscript each button and assign a variable to it, which will dynamically load text inside a textfield…
But I would stick to the make-a-new-button each time to be sure…

Thank you~!
I just remake the buttons… now the problem is,
the little green feather movie clip cannot show alpha properties
when it moves along

the update fla :
http://www.hk2168.com/geneinfo.fla

i’m not quite sure what you want the feather to do… i changed your scripting a little… try this:

onClipEvent (load) {
anaus = 0;
}
onClipEvent (enterFrame) {
this._x = this._x+_root._xmouse/4;
if (anaus == 1) {
if (this._alpha<100) {
this._alpha +=10;
}
if (this._alpha == 100) {
this._alpha = 90;
}
} else {
if (this._alpha>0) {
this._alpha -=20;
}
}
}