Flash Fade Out
Flash Fade Out
Out of context: Reply #6
- Started
- Last post
- 9 Responses
- joyride0
yeah, you can do that. Basically, you you need to add some more properties to the alphaTo call.
your_mc .alphaTo (0, 5, "linear", 0, onEnd);
func tion on End( ) {
load your movieclip here
}This will call the functino onEnd when the transition finishes, which will load your swf into the clip
That make sense?