Return to Snippet

Revision: 15296
at June 30, 2009 07:14 by weavermedia


Initial Code
// basic switch/case syntax

switch (langCode)
{
	case "eng":
		//
		// do something here if langCode is "english"
		//
		break;
	case "spa":
		//
		// do something else here if langCode is "spanish"
		//
		break;
	default:
		//
		// do this default is langCode matches none
		//
}

Initial URL


Initial Description


Initial Title
Basic Switch...Case syntax

Initial Tags


Initial Language
ActionScript 3