Hey all
I have a button that opens a sidebar (say frame 2 in a movieclip) when I rollover it.
When I rollout, it goes to frame 1 of that movieclip, and the sidebar dissapears.
In the sidebar there's a button, but I one cannot press it, since once I move the mouse, the sidebar is gone.
Can't change the HIT area of the button, neither the position of it.
So I thought it would be best for the sidebar to stay for about 2 seconds after I rolled out, then dissapear.
Anyone knows how it's done?
on (rollOver) {
_root.aclip.gotoAndStop(47);
}
on (rollOut) {
Wait! (for 2 seconds).and then:
_root.aclip.gotoAndStop(1);
}