Actionscript Course

While loops

The while loops are used to repeat a block of code as long as a specified condition is true.
The while loops have the following syntax:

while (condition) {
  // codeBlock
}
- If the condition is true, the code within curly brackets is executed, then the script checks again the condition, and if it is still true, "codeBlock" is executed again. This process continues until condition becomes false, or you use a "break" statement to end the loop.

Example:
var total:int = 1;

// define a variable (counter) to control the executions number
var i:int=0;

// create a while loop
while(i<4)
{
  total *= 2;
  trace(total);
  i++;        // adds 1 to counter (i)
}

// In Output displays:  2 4 8 16
ActionScript first evaluates the condition (i<4), becouse "i=0", this condition returns true; so, ActionScript executes the loop body.
The loop body sets "total" to its own value multiplied by two, then "trace(total)" output its value, and "i++" adds one to "i" (the counter).
Then, ActionScript evaluates again the condition, and if it is true (now "i" is 1) executes the loop body. This process continues until the value of "i" variable is 4, which is not less than 4, so the condition is false, and the loop ends.
We got the following output:   2 4 8 16

Do While

The do while loop is a variant of the "while()" loop. The difference is that "do while" loop first executes the block of code, and then evaluates the condition.
The syntax is:
do {
  // codeBlock
} while (condition);
Example:
var total:int = 1;

// define a variable (counter) to control the executions number
var i:int=1;

// create a do..while loop
do
{
  total *= 2;
  trace('total is '+ total);
  i++;        // adds 1 to counter (i)
} while(i<0);

// In Output displays:  total is 2
This code displays in Output panel:   total is 2
As you can notice, although the condition is false (i<0 , but i=1), the code within curly brackets is still executed once.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag defines the clickable areas inside the image map?
<map> <img> <area>
<img src="image.jpg" usemap="#map1">
<map name="map1">
  <area shape="rect" coords="9, 120, 56, 149" href="#">
  <area shape="rect" coords="100, 200, 156, 249" href="#">
</map>
Which CSS property defines what is done if the content in a box is too big for its defined space?
display overflow position
#id {
  overflow: auto;
}
Click on the event which is triggered when the mouse is positioned over an object.
onclick onmouseover onmouseout
document.getElementById("id").onmouseover = function(){
  document.write("Have Good Life");
}
Indicate the PHP variable that contains data added in URL address after the "?" character.
$_SESSION $_GET $_POST
if(isset($_GET["id"])) {
  echo $_GET["id"];
}
While and Do While

Last accessed pages

  1. SHA1 Encrypt data in JavaScript (35314)
  2. How to use php variable in external js file (3709)
  3. Working with MySQL Database (3056)
  4. Node.js Move and Copy Directory (19972)
  5. Create simple Website with PHP (43821)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (243)
  2. Read Excel file data in PHP - PhpExcelReader (84)
  3. The Four Agreements (73)
  4. PHP Unzipper - Extract Zip, Rar Archives (72)
  5. The Mastery of Love (63)
Chat
Chat or leave a message for the other users
Full screenInchide