home *** CD-ROM | disk | FTP | other *** search
- function Replace()
- {
- if(sVariable.length == 0)
- {
- tTxt.text = sTxt;
- }
- else
- {
- tTxt.variable = sVariable;
- }
- tTxt.autoSize = autoSize;
- if(autoSize == "right")
- {
- tTxt._x = - Math.floor(tTxt._width);
- }
- else if(autoSize == "center")
- {
- tTxt._x = - Math.floor(tTxt._width / 2);
- }
- else
- {
- tTxt._x = 0;
- }
- }
- var sTxt;
- var bBmp;
- var bMultiline;
- var autoSize;
- var sVariable;
- Replace();
- this.cacheAsBitmap = bBmp;
-