.FLA hover captions
.FLA hover captions
Out of context: Reply #2
- Started
- Last post
- 6 Responses
- nuggler0
You don't need the frame scripts or the enterFrame scripts on the hover mcs. Just put it on the two invisible buttons, like
on(rollOver){
startDrag("appttoday", true);
appttoday._alpha = 90;
}
on(rollOut, dragOut){
stopDrag();
appttoday._alpha = 0;
}