If statements
If statements are a way of telling the program what to do on certain conditions. You can tell the program to do something while it equals something, or is less than or greater than, while it is greater than or equal to something, while it is less than or equal to something, or not equal. Here is a few examples in this example code. You can test this by placing it inide a actionscript3.0 document's frame.
var myString:String = "text";
var myInt:int = 100;
if(myString=="text")
{
trace("the variable is the same as the String");
}
if(myInt != 100){
trace("the variable is not equal to the int");
}
if(myInt <= 25){
trace("the variable is greater than or equal to 25");
}

The Breakdown. In this example the trace example will be executed, as well as the 2nd if statement, and the 3rd example will not be executed, because the variable myInt is not less than or equal to 25.
You can also do shortcuts to typing your actionscript file. such as telling the program straight up if you want the variable to be exectuted if it is true. Such as this example I will provide. And you can also add statements when the program also has another option of being with an else statement.
var myBoolean:Boolean = true;
if(myBoolean){
trace("my Boolean equals true");
} else if(!myBoolean){
trace("my Boolean equals false;");
}

In an if statement if you want to say the variable may be false you place a explanation point before the called variable. In this example the first if statement was executed and the second if statement was not called because the called variable did equal true;
|