SWF Transition Effect
SWF Transition Effect
- Started
- Last post
- 1 Response
- Delvetica
I have two .swf files. When I click "tree1.swf", it will go to "tree2.swf".
However, I think it is too abrupt when showing "tree2.swf".
I need a smooth transition for these two .swf.Does anyone know any script to join these two files nicely and smoothly, like fade in and out?
I really need to solve this problem desperately. Thanks in advanced:
This folder contains 2 .fla and 2 .swf. It is quite big, please be patient.
- bull0
I guess, fade tree2 in (in a mc) onEnterFrame, like so
onClipEvent (load) {
_alpha=0;
}
onClipEvent (enterFrame) {
_alpha=_alpha+((100-(_alpha))/10...
}bit basic, but will do the job.