Mega Code Archive

 
Categories / Flash ActionScript / Language
 

The logical NOT operator is often used in compound conditions with the logical OR operator

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var userName:String = "Bruce";                  if (!((userName == "Bruce") || (userName == "Joey"))) {           trace ("Sorry, but only Bruce and Joey have access to this application.");         }         }   } }