Class com.sekati.display.BaseClip

Implemented Interfaces

IBaseClip ITweenClip

Description

This is the foundational MovieClip class and should be thought of as the main building block of the SASAPI framework.

See Also

Method Index

new BaseClip()
destroy(), onUnload(), stopTween(), toString(), tween()

Constructor Detail

BaseClip

public function BaseClip()

Method Detail

onUnload

public function onUnload():Void

if destroy hasnt already been called manually run it onUnload.

Specified By

onUnload() in com.sekati.display.IBaseClip

destroy

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(); 
 

tween

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"});
 

Return

Void

Specified By

tween() in com.sekati.display.ITweenClip

See Also

  • http://hosted.zeh.com.br/tweener/docs/en-us/

stopTween

public function stopTween():Void

Remove any or all Tweener tweens on the instance object using arguments array.

Parameters

Return

Void

Specified By

stopTween() in com.sekati.display.ITweenClip

toString

public function toString():String

return reflective output

Return

String