ActionScript 3.0 TransitionManager
If
TransitionManager.start(screen, {type:Fade, direction:Transition.IN, duration:trans_duration, easing:None.easeNone});
on a particular class extending movie clip fails or throws an exception while compiling or running then make the class dynamic as in
public dynamic class Superb extends Movieclip.
TransitionManager.start(screen, {type:Fade, direction:Transition.IN, duration:trans_duration, easing:None.easeNone});
on a particular class extending movie clip fails or throws an exception while compiling or running then make the class dynamic as in
public dynamic class Superb extends Movieclip.
Comments