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.
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.
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.
<ul> <li>http://coursesweb.net/html/</li> <li>http://coursesweb.net/css/</li> </ul>
.some_class { display: list-item; }
var obj = { "courses": ["php", "javascript", "ajax"] }; var jsonstr = JSON.stringify(obj); alert(jsonstr); // {"courses":["php","javascript","ajax"]}
$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>'; $dochtml = new DOMDocument(); $dochtml->loadHTML($strhtml); $elm = $dochtml->getElementById("dv1"); echo $elm->nodeValue; // CoursesWeb.net