MultiLanguageTextContainer
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Implements: | |
Classpath: | org.asaplibrary.management.lang.MultiLanguageTextContainer |
File last modified: | Sunday, 15 May 2011, 21:24:58 |
Basic implementation of IMultiLanguageTextContainer to be used with the LanguageManager to provide language dependent texts in an application.
To use this class, perform the following steps:
- Create a new movieclip in the library
- Give it a significant name containing font information, p.e. "arial 11px center"; this allows for easy reuse of containers
- Link it to the class org.asaplibrary.management.lang.MultiLanguageTextContainer
- Inside the movieclip, create one or more nameless textfields
- Set font embedding as necessary
- Place instances of the library item on the stage where necessary.
- Name the instances whatever you like, as long as the name ends with underscore, followed by the string id of the text to be associated with the instance. P.e.: "myHeader_helloWorld"
- In your application, load an xml file containing texts into the LanguageManager:
LanguageManager.getInstance().loadXML("texts_en.xml");
- directly,
- as base class for further extension or
- as example of how to implement the IMultiLanguageTextContainer interface.
Summary
Constructor
Instance methods
-
setData
(inData:TextItemData) : void
- IMultiLanguageTextContainer implementation
-
setText
(inText:String, inIsHTML:Boolean = true) : void
- IMultiLanguageTextContainer implementation
- toString () : String
Constructor
MultiLanguageTextContainer
function MultiLanguageTextContainer()
Instance methods
setData
function setData(inData:TextItemData) : void
IMultiLanguageTextContainer implementation Set the data for the container
Parameters
inData:the object containing the data
setText
function setText(inText:String,
inIsHTML:Boolean = true) : void
IMultiLanguageTextContainer implementation Set the text for the container
Parameters
inText :the string containing the text
inIsHTML:if true, text is rendered as HTML, otherwise directly
toString
override function toString() : String
Overrides
- MovieClip.toString