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
Which tag is used to add lists into <ul> and <ol> elements?
<dt> <dd> <li>
<ul>
 <li>http://coursesweb.net/html/</li>
 <li>http://coursesweb.net/css/</li>
</ul>
Which value of the "display" property creates a block box for the content and ads a bullet marker?
block list-item inline-block
.some_class {
  display: list-item;
}
Which instruction converts a JavaScript object into a JSON string.
JSON.parse() JSON.stringify eval()
var obj = {
 "courses": ["php", "javascript", "ajax"]
};
var jsonstr = JSON.stringify(obj);
alert(jsonstr);    // {"courses":["php","javascript","ajax"]}
Indicate the PHP class used to work with HTML and XML content in PHP.
stdClass PDO DOMDocument
$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>';
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);
$elm = $dochtml->getElementById("dv1");
echo $elm->nodeValue;    // CoursesWeb.net
Adobe Flash - ActionScript 3 Video Tutorials

Last accessed pages

  1. querySelector and querySelectorAll (30124)
  2. sPBM - Simple PHP Backup Manager (3402)
  3. Vue JS - Transition and Animation (490)
  4. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (141749)
  5. Node.js Move and Copy file (28420)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (473)
  2. CSS cursor property - Custom Cursors (79)
  3. The Mastery of Love (70)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (62)
  5. CSS3 2D transforms (46)