This is the foundational MovieClip class and should be thought of as the main building block of the SASAPI framework.
public function onUnload():Void
if destroy hasnt already been called manually run it onUnload.
public function destroy():Void
Destroy object elements and events for proper garbage collection. This is a generic destroy method to insure that, at a minimum, the enterFrame and clip itself are removed when destroy is called. This behavior can be overwritten by BaseClip's subclasses. If you wish to use BaseClip's destroy in addition to your subclass destroy you may do so via:
super.destroy();
public function tween():Void
Built-in com.sekati.transitions.Tweener.addTween wrapper. The method accepts either one argument (TweenerObject) or two arguments (target, TweenerObject).
Usage: tween({_x:100, time:1, transition:"linear"}); tween(someOtherMc, {_x:100, time:1, transition:"linear"});
Void
tween() in com.sekati.display.ITweenClip