My account
Shopping cart
Knowledge base
Support


TxEff Methods



Overview | Properties | Methods | Events | Patterns | XML | Partial Effects | Base Presets

You can instantiate the TxEff from ActionScript, dynamically or statically using the following syntax:

Method Description
transitionEffect The method is used to apply the effect on the target TextField object. This is only for advanced use, you don’t need to use this method in order to perfom transitions on a frame animation basis.
All parameters are optional, however, the transitionType (the first parameter) should be entered.

Sytax:
txeffInstanceName.transitionEffect([ transType : String[, patternName : String, preset : String, tweenType : String, easeType : String, tweenDuration : Number , customP1 : String, customP2 : String, customP3 : String, customP4 : String, customP5 : String,customP6 : String] ] );

Usage:
txeffInstanceName.transitionEffect("show");
txeffInstanceName.transitionEffect("show", "Blur", "6", "Strong", "easeInOut", 2.5, "", "100", "20");
removeEffect It instantly stops and removes the effect from the specified target.

Usage:
txeffInstanceName.removeEffect();
show Performs a show transition based on the setup that the TxEff component instance already has.

Usage:
txeffInstanceName.show();
hide Performs a hide transition based on the setup that the TxEff component instance already has.

Usage:
txeffInstanceName.hide();

Overview | Properties | Methods | Events | Patterns | XML | Partial Effects | Base Presets