| Package | net.guttershark.display |
| Class | public class LocalizableClip |
| Inheritance | LocalizableClip flash.display.MovieClip |
| Property | Defined 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 | ||
| Method | Defined 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 | ||
| localizedID | property |
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
| localizedText | property |
localizedText:String [read-write]The text content for this clip.
Implementation public function get localizedText():String
public function set localizedText(value:String):void
| tfield | property |
public var tfield:TextFieldAn instance of a text field that sould be on the stage.
| 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.
Parameterstf:TextField (default = null) — The text field to store internally that displays the text.
|