Packagenet.guttershark.display
Classpublic class LocalizableClip
InheritanceLocalizableClip Inheritance flash.display.MovieClip

The LocalizableClip class is used with the LanguageManager to add language support at runtime.



Public Properties
 PropertyDefined by
  localizedID : String
The localized id of this clip, which correlates to a text node in a language xml file.
LocalizableClip
  localizedText : String
The text content for this clip.
LocalizableClip
  tfield : TextField
An instance of a text field that sould be on the stage.
LocalizableClip
Public Methods
 MethodDefined by
  
LocalizableClip(tf:TextField = null)
Constructor for LocalizableClip instances - you should bind this class to a movie clip in the library, or if you need to create one through code, pass in a text field instance in the constructor.
LocalizableClip
Property detail
localizedIDproperty
localizedID:String  [read-write]

The localized id of this clip, which correlates to a text node in a language xml file.

Implementation
    public function get localizedID():String
    public function set localizedID(value:String):void
localizedTextproperty 
localizedText:String  [read-write]

The text content for this clip.

Implementation
    public function get localizedText():String
    public function set localizedText(value:String):void
tfieldproperty 
public var tfield:TextField

An instance of a text field that sould be on the stage.

Constructor detail
LocalizableClip()constructor
public function LocalizableClip(tf:TextField = null)

Constructor for LocalizableClip instances - you should bind this class to a movie clip in the library, or if you need to create one through code, pass in a text field instance in the constructor.

Parameters
tf:TextField (default = null) — The text field to store internally that displays the text.