This Flash course uses the Adobe Flash CS5, if you have not used Adobe Flash or have worked with an earlier version, it's better to familiarize yourself with the main working windows, which is shown below.
Flash start Window
- This is the window which is shown when you open the Adobe Flash CS5 application. From here you can start to open the working window to create a new document or to open an existing document file, or a template from the Adobe Flash library. There is also in this window links to online documentation of the official website.
A file in Flash is called a
document. To create a new document, usualy it's chosen
ActionScript 3.0
The other options from the
Create New column are for special Flash projects, they target different operating systems.
- The
Adobe AIR 2.0 can be used to create Flash applications for desktop (for Mac, Windows, and Linux).
-
iPhone OS for iPhone, iTouch, and iPad devices,
Flash Lite 4 is a Flash player for less power and memory-constraint devices.
Also, you can open documents to write ActionScript code.
Adobe Flash working screen
- This is the main working window, with menus and tools for creating, editing and saving Flash documents.
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