| Package | com.jumpeye.flashEff.core.interfaces |
| Interface | public interface IFlashEffSymbolText |
| Subinterfaces | IFlashEffSymbol, IFlashEffText |
IFlashEffSymbol and IFlashEffText interfaces and si not implemented directly
by the patterns.
| Property | Defined by | ||
|---|---|---|---|
| component : IFlashEff
Reference to the FlashEff component instance using the current pattern.
| IFlashEffSymbolText | ||
| easeType : String
The types of easing that will be applied by the pattern.
| IFlashEffSymbolText | ||
| tweenDuration : Number
The time duration of the show or hide transition, measured in seconds.
| IFlashEffSymbolText | ||
| tweenType : String
The type of tween animation used by the pattern.
| IFlashEffSymbolText | ||
| Method | Defined by | ||
|---|---|---|---|
|
hide():void
Start the transition which turns the text from a visible state to invisible.
| IFlashEffSymbolText | ||
|
remove():void
Stops and removes the show or hide transition but without removing the pattern object from
the FlashEff component instance.
| IFlashEffSymbolText | ||
|
show():void
Start the transition which turns the target object from an invisible state to visible.
| IFlashEffSymbolText | ||
| component | property |
component:IFlashEff [read-write]Reference to the FlashEff component instance using the current pattern.
Implementation public function get component():IFlashEff
public function set component(value:IFlashEff):void
See also
| easeType | property |
easeType:String [read-write]
The types of easing that will be applied by the pattern. Supported values are "easeIn",
"easeOut", "easeInOut" and "easeNone".
public function get easeType():String
public function set easeType(value:String):void
| tweenDuration | property |
tweenDuration:Number [read-write]The time duration of the show or hide transition, measured in seconds.
Implementation public function get tweenDuration():Number
public function set tweenDuration(value:Number):void
| tweenType | property |
tweenType:String [read-write]
The type of tween animation used by the pattern. Supported values are "Regular",
"Strong", "Back", "Bounce", "Elastic" and
"None".
public function get tweenType():String
public function set tweenType(value:String):void
| hide | () | method |
public function hide():voidStart the transition which turns the text from a visible state to invisible.
See also
| remove | () | method |
public function remove():void
Stops and removes the show or hide transition but without removing the pattern object from
the FlashEff component instance. If the isTargetVisibleAtEnd property of the
FlashEff instance is set to true, then the target object will be displayed after
the transition has been removed.
| show | () | method |
public function show():voidStart the transition which turns the target object from an invisible state to visible.
See also