Setting the Number of Spaces per Indentation : ToString : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » ToString »

 

Setting the Number of Spaces per Indentation


 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){


        var example:XML = <stooges>
                             <moe /><curly><larry>
            </larry>
                                   </curly>
                   </stooges>;
        
        XML.prettyIndent = 0;
        trace(example);
        
        XML.prettyIndent = 8;
        trace(example);

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» ToString