mnik
02-26-2002, 07:35 AM
I want to roll over a button that causes a MovieClip of text (a description of the content) to change it's alpha from 0 to 100 over a series of frames using ActionScript.
I'm able to make it appear abruptly:
on (release) {
setProperty (_root.myMC, _alpha, 10);
}
...But want it to gradually appear. I know the solution lies in adding the framerate to the parameters, but I'm stumped.
(Yes I know I can do this by manually tweening the clip, but hey -I'm learning Actionsript!)
Thanks in advance.
I'm able to make it appear abruptly:
on (release) {
setProperty (_root.myMC, _alpha, 10);
}
...But want it to gradually appear. I know the solution lies in adding the framerate to the parameters, but I'm stumped.
(Yes I know I can do this by manually tweening the clip, but hey -I'm learning Actionsript!)
Thanks in advance.