switch statement executes one of several possible code blocks based on the value of a single test expression : Switch : Statement Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Statement » Switch »

 

switch statement executes one of several possible code blocks based on the value of a single test expression


 


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

        var greeting;
        
        var language = "english";
        
        switch (language) {
          case "english":
            greeting = "Hello";
            break;
        
          case "japanese":
            greeting = "Konnichiwa";
            break;
        
          case "french":
            greeting = "Bonjour";
            break;
        
          case "german":
            greeting = "Guten tag";
            break;
        
          default:
            // Code here (not shown) would display an error message indicating
            // that the language was not set properly
        }
        trace(greeting);
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Statement
» Switch