Packagecom.jumpeye.flashEff.core.interfaces
Interfacepublic interface IFlashEffSymbolText
SubinterfacesIFlashEffSymbol, IFlashEffText

This interface is extended by IFlashEffSymbol and IFlashEffText interfaces and si not implemented directly by the patterns.



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined 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
Property detail
componentproperty
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

easeTypeproperty 
easeType:String  [read-write]

The types of easing that will be applied by the pattern. Supported values are "easeIn", "easeOut", "easeInOut" and "easeNone".

Implementation
    public function get easeType():String
    public function set easeType(value:String):void
tweenDurationproperty 
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
tweenTypeproperty 
tweenType:String  [read-write]

The type of tween animation used by the pattern. Supported values are "Regular", "Strong", "Back", "Bounce", "Elastic" and "None".

Implementation
    public function get tweenType():String
    public function set tweenType(value:String):void
Method detail
hide()method
public function hide():void

Start 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():void

Start the transition which turns the target object from an invisible state to visible.

See also