I’m working on a Flash site at the moment and I have some text that slides in when you rollover another button, but when you roll out the text is supposed to disappear but it doesn’t unless you go and rollover the button again.

This is the script I have.

on (rollOver) {
tellTarget (“homeroll”){
play 0;
}
}
on(rollout) {
tellTarget (“homeroll”) {
stop 0;
}
}
Do you know a way to solve this?? I would like the text to completely disappear at the moment I've used a movie clip to animate the text.