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
![Adobe Flash start window](addons/flash/adobe_flash_start_window.jpg)
- 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
![Adobe Flash working screen](addons/flash/adobe_flash_working_screen.jpg)
- 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 HTML5 tag can be used to embed an external application (SWF, PDF) in web page?
<mark> <embed> <canvas><embed src="flash_game.swf" width="450" height="350" />
Which CSS pseudo-element adds a special style to the first line of a text?
:first-letter :before :first-line#id:first-line {
font-weight: bold;
color: blue;
}
Click on the window object property which gets or sets the URL of current page.
window.location window.self window.statusvar url = window.location;
alert(url);
Indicate the PHP function used to get the contents of a file or page and store it into a string.
fopen() file_put_contents() file_get_contents()$homepage = file_get_contents("http://coursesweb.net/");
echo $homepage;