Flash-as3 Course

Do you want to learn Adobe Flash and ActionScript 3 but don't have time to read books? You can learn the basics of these web technologies with the help of the online video tutorials posted here.

Total Training for Adobe Flash CS5 Professional

The Total Training for Adobe Flash CS5 Professional is a Flash CS5 video course with several tutorials that teach you about: Flash Scene, buttons, animation, 3D, ActionScript and interactivity.


- For original courses and online training, visit: totaltraining.com.

ActionScript 3 with Flash CS4 Professional OOP

ActionScript 3 with Flash CS4 Professional OOP is a video course with multiple tutorials (from lynda.com) that teach you the OOP techniques (Object Oriented Programming), how to work with classes and objects in ActionScript 3.
These tutorials were recorded in CS4, but is fine for Flash CS5 too.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
What attribute makes the input text box to not be modified by the user?
checked="checked" readonly="readonly" disabled="disabled"
<input type="text" value="fixed-value" readonly="readonly" name="a_name" />
What CSS property allows you to create rounded corners in your webpage design?
background-size border-size border-radius
.class {
  border:2px solid blue;
  border-radius:1.2em;
}
What instruction displays a confirmation dialog box to the viewer, who must then click OK or Cancel to proceed?
indexOf() confirm() prompt()
var ques = window.confirm("The result of 0+0 is 0?");
if (ques) alert("Corect");
else alert("Incorrect");
Indicate the PHP function that returns the lowest number of the parameter values.
floor() ceil() min()
$min_nr = min(12, 8, 25, 13);
echo $min_nr;        // 8
Adobe Flash - ActionScript 3 Video Tutorials

Last accessed pages

  1. PHPMailer (2333)
  2. The Stage, Panels and Tools in Flash (10392)
  3. PHP Unzipper - Extract Zip, Rar Archives (32327)
  4. Alert, Confirm and Prompt (4630)
  5. ActionScript 3 - Change MovieClip Color (9049)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (100)
  2. PHP-MySQL free course, online tutorials PHP MySQL code (11)
  3. The Mastery of Love (11)
  4. Read Excel file data in PHP - PhpExcelReader (10)
  5. PHP-MySQL Scripts (10)