Mega Code Archive

 
Categories / Flash ActionScript / XML
 

Namespace objects return their URI value by default when the toString() method is used

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var fooNamespace:Namespace = new Namespace("http://www.bar.com/");                  trace(fooNamespace.toString()); // Displays: http://www.bar.com/     }   } }