I have a button…that at the moment loads a movie. However I need the button to fade text then load movie!! Is it as simple as combining these twp pieces of action script? How do I go about altering this to work?
on (release)
{_root.loadMovie
(“profile2.swf”);
}
bodycopy._alpha = 0;
onEnterFrame = function () {
if (bodycopy._alpha<100) {
bodycopy._alpha += 10;
}
}
Thank you