-
on rollover/out
Hi I have this movieclip where a bitmap fades out over another bitmap
in _parent I have this code
on(rollOver) {
this.gotoAndPlay("logoFadeIn");
}
on(rollOut) {
this.gotoAndPlay("logoFadeOut");
}
as you see when you mouse hover the fading starts and fades back when mouse out.
When testing and if I mouse hvoer and mouse out(very quick) it does'nt fade out.
Does anyone knows why?
regards T
-
This kind of code can often get delicate. Can you post your fla or code?
-
Have the label logoFadeOut one frame after the stop action, instead of at the same frame ( if thats what you have ).
-
Thanks
Thanks pellepiano! That did the work :)