Namespace objects return their URI value by default when the toString() method is used : Namespace : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Namespace »

 

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/

    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo XML
» Namespace