Actionscript Course

Constants

Constants are a special kind of variable, store a value that never changes during the course of the program.
The syntax to create a Constant is:
const CONSTANT_NAME:DataType = value;
- "const" is the special keyword, reserved to define a constant.
As you can see, this syntax looks a lot like a variable declaration but with the var keyword replaced with "const".
Most programmers use all caps for the name of the constants to differentiate them from variables.
  - Example (we define two constants and output their value):
const BROTHER:String = 'Victor';
const BROTHER_AGE:uint = 33;

// output with "trace()" the value of these constants
trace(BROTHER+ ' - '+ BROTHER_AGE);     // in the Output panel will display:  Victor - 33
If you try to change the value of a constant, you get an error messages.

Operators

Operators are special symbols used to take one, two or more operands (values, variables, expresions) and return a value.
For example, the most known operators are: + (addition), and - (subtraction).
The operators can be used to change, combine and evaluate data in a script.
Operators can be divided into multiple groups:

Arithmetic operators

When there's more than one arithmetic operator, the execution follows the arithmetic rules (will first execute multiplication, division or modulo, and then addition and subtraction, if you use Parentheses, their code will be evaluated first before moving on to other operations).
  - Example:
var num:Number = 3 + 4 * 5;         // result 23
var num:Number = (3 + 4) * 5;       // result 35

The "+" operator can also be used to join (concatenate) strings.
  - Example:
var str:String = 'ActionScript course ';
var str2:String = str + 'coursesweb.net';

trace(str2);          // ActionScript course coursesweb.net

Increment (++) and decrement ( – – )

Increment (++) and decrement ( – – ) operators are used to add or substract 1 from a number. They require only one argument:
 
var num:Number = 15;
num++;         // 16
num--;         // 15

Compound arithmetic operators

The compound arithmetic operators provide a shorthand solution to performing arithmetic on numbers.

Relational and equality operators

Relational and equality operators are used to compare two values and return true or false. - the (=) operator is an assignment operator, assigns a value to a variable (e.g.   var a_name = 'value';).

Logical operators

The logical operators are used to compare multiple comparative statement.
Here is an example with some of the elements presented in this lesson (see the comments in code):
  1. Open a new Flash document (ActionScript 3.0), right-click on Frame 1 and choose "Actions".
  2. Add the following code in the "Actions panel":
    const SHAPE:String = 'square';     // declare a constant
    
    // declare 2 variables
    var side:int = 8;
    var measure:String = ' pixels';
    
    // apply operators to "side" variable
    side += 3;     // equivalent to: latura = latura + 3;
    side--;
    
    // If "side" is greater than 8, apply "trace()"
    if(side > 8) { trace(SHAPE+ ' - '+ side+ measure); }
    
  3. Press "Ctrl+Enter" and see the result in the "Output panel".
    - Displays: square - 10 pixels
- If the expression inside the parenthese of "if()" statement is true, the program executes the code between its curly brackets.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is used to add definition lists into a <dl> element?
<dt> <dd> <li>
<dl>
 <dt>HTML</dt>
  <dd> - Hyper Text Markup Language</dd>
  <dd> - Language for web pages</dd>
</dl>
Which CSS property can hide an element on page, letting an empty space in its place?
display position visibility
#id {
  visibility: hidden;
}
Click on the event which is triggered when the mouse clicks on an object.
onclick onmouseover onfocus
document.getElementById("id").onclick = function(){
  alert("http://CoursesWeb.net/");
}
Indicate the PHP variable that contains the contents of both $_GET, $_POST, and $_COOKIE arrays.
$_SESSION $_GET $_REQUEST
if(isset($_REQUEST["id"])) {
  echo $_REQUEST["id"];
}
Constants and Operators

Last accessed pages

  1. PHP PDO - exec (INSERT, UPDATE, DELETE) MySQL (55417)
  2. ActionScript 3 Lessons (7252)
  3. Get Lower, Higher, and Closest Number (5331)
  4. Understanding OOP - Object Oriented Programming (5144)
  5. jQuery Ajax - load() method (10776)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (252)
  2. Read Excel file data in PHP - PhpExcelReader (91)
  3. PHP Unzipper - Extract Zip, Rar Archives (76)
  4. The Four Agreements (75)
  5. The Mastery of Love (66)