MultiLanguageTextContainer

Kind of class: public class
Package:
Inherits from:
  • MovieClip
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:
  1. Create a new movieclip in the library
  2. Give it a significant name containing font information, p.e. "arial 11px center"; this allows for easy reuse of containers
  3. Link it to the class org.asaplibrary.management.lang.MultiLanguageTextContainer
  4. Inside the movieclip, create one or more nameless textfields
  5. Set font embedding as necessary
  6. Place instances of the library item on the stage where necessary.
  7. 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"
  8. In your application, load an xml file containing texts into the LanguageManager: LanguageManager.getInstance().loadXML("texts_en.xml");
This class can be used either

Summary

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