Convert string to TitleCase in Flash using ActionScript function

Unfortunately and surprisingly, Flash AS3 does not have a TitleCase function a la ucwords() in PHP todate. Following ActionScript 3.0 function will let you do just that: function titleCase(txt:String):String{ txt = txt.split(" ").map(function(myElement:String, myIndex:int, myArr:Array):String{ return myElement.substr(0, 1).toLocaleUpperCase() + myElement.substr(1); }).join(" "); return txt; } // you’ll use this function like this var heading:String =…

[AS3] Dynamically adding styles to TextField Component with TextFormat class in Flash using ActionScript

In AS3, styling the text content dynamically is done using TextFormat class. Create a new Flash AS3 file, In the ActionPanelCreate a TextFormat object with the specified properties. You can then change the properties of the TextFormat object to change the formatting of text fields. For making TextField Bold var boldText:TextFormat = new TextFormat(); boldText.bold…

[AS3] Add Dynamic MovieClips to ScrollPane component using Flash

In Flash, ScrollPane component allows every kind of content to be easily added and shown in the scrollpane. Here’s how you can create MovieClips dynamically and add them to the scrollpane on the stage. First of all, this is what will it look like: [SWF]https://www.parorrey.com/wp-content/uploads/2010/12/scrollPane.swf, 500, 300[/SWF] Following are the steps that will create a…

[AS3] Flash AS3 TextArea Component tips

In Flash AS3, while using TextArea Component in the following way: import fl.controls.TextArea; var myTxt:TextArea = new TextArea(); //define position on stage myTxt.move(50,50); //define size of TextArea myTxt.setSize(300, 50); myTxt.htmlText = "<li>Lorem ipsum dolor</li> <li> sit amet, consectetuer adipiscing elit.</li> <li>Vivamus quis nisl vel tortor nonummy vulputate.</li> <li> Quisque sit amet eros sed purus euismod…