Hi Everyone
I'm trying to work some effects into my navigation.
I created a movieclip (called "home") over 5 frames
On my Actions layer
Frame 1: Stop();
Frame 2: Stop();
Frame 3: //Nothing
Frame 4: //Nothing
Frame 5: gotoAndStop(1);
On my Button layer
I have a shape tween
In my main movie I have the following code relating to the button
on (rollOver) {
_root.home.play();
}
on (rollOut) {
_root.home.play();
}
on (dragOut) {
_root.home.gotoAndPlay(3);
}
on (releaseOutside) {
_root.home.gotoAndPlay(3);
}
on (dragOver) {
_root.home.play();
}
The Problem: When I mouse over really fast the movieclip doesn't play out, i.e. the shape tween stops halfway....
Any ideas?
I looked around and found that the chaps at
www.designchapel.com didn't seem to have this problem...
Suggestions will be much appreciated.
Thnx
RYU