You are browsing posts made during September, 2008

AS2 and AS3 XML Scrollbar Class Updated

( September 2nd, 2008 )

It was pointed out to me that the paragraph formatting was not actually showing correctly. The paragraph formatting in the XML file was overriding the paragraph formatting in the FLA file.

Instead of using the following code in the FLA file:
var newFormat:TextFormat = new TextFormat();
newFormat.align = TextFormatAlign.JUSTIFY;
yourtextvariable.setTextFormat(newFormat);

One should just add <p align='justify'> to the beginning of the text in the XML file and close with </p> at the end of the text.

The new files have been placed in their respective posts.