How can i make the text appear slowly

how can i make the text appear slowly (from fade to strong))when i mouse over a picture or a symbol? is there any action script for it?

hmm…

first frame set the text to alpha to “0%” and on example like “50th” frame set the text to original ( 100%) then create motion tween…

NOTE: text must be converted to symbols, graphics, etc before u can alpha it…

Hope this is what your after…

should be easy for you to change around to suite your needs…

If have any questions, feel free to post them or send ,me PM

thanks a lot for your help…
bamb0006, wat u gave me is not the actual thing i want…
mayb i should explain furthur…
when i mouse over a symbol/button, a sentence will appear slowly below it…
so should i create another layer juz for the text… or should i create everything under the “button”?
if yes, how should i do it? do i need action script 4 it?

you can make a MC and place actions on it like this:

[AS]

onClipEvent (load) {
this._alpha = 25;
}
onClipEvent (enterFrame) {
function fadeOut() {
if (this._alpha>25) {
this._alpha -= 10;
} else {
this.onEnterFrame = null;
}
}
function fadeIn() {
if (this._alpha<100) {
this._alpha += 10;
} else {
this.onEnterFrame = null;
}
}
this.onRollOver = function() {
this.onEnterFrame = fadeIn;
};
this.onRollOut = function() {
this.onEnterFrame = fadeOut;
};
}

[/AS]

ofcoarse you can change the values to your needs…

You can try macneilslt code if thats easy for you, and what you need…

I must not understand what you mean
"when i mouse over a symbol/button, a sentence will appear slowly below it…"

The blue circle which you can change to anything is your symbol/button
The text can be changed to what ever you like, Ie a sentence under the button.
It fades in and out with the mouse over…

Changing the speed at which it fades in or out is just a matter of adjusting the amount of frames in the twean.

I think you will find that most people do not use “buttons” as they do not give you the control and flexibility that a “MC” will give you.

If the code that macneilslt provided doesn’t help, and changing my MC still wont suite your needs, let me know and we can try something else.
Or someone else my have an idea.

thanks… i try ur suggestions…