Tag Archives: ActionScript 3

Simple XML Parsing ActionScript 3.0

XML Example:   <data>     <img src="images/0001.jpg" title="Photo 01">         <caption>This is my Photo 01</caption>     </img>     <img src="images/0002.jpg" title="Photo 02">         <caption>This is my Photo 02</caption>      </img>      <img src="images/0003.jpg" title="Photo 03">         <caption>This is my Photo 03</caption> [...]
Posted in ActionScript 3.0 | Also tagged , , , , | Leave a comment

How to remove white space – ActionScript 3.0

  public static function f_trim($s_base:String):String         { ///*    remove whitespace         return($s_base.replace(/^\s+|\s+$/g, ""));         }  
Posted in ActionScript 3.0 | Also tagged , | Leave a comment