Flash Course

Brush tool

The Brush tool it is on the "Tools panel", it can be used with any of the two main options: "Merge Drawing" and "Object Drawing".
This tool has several modes with different drawing effects. When the Paint Brush tool is selected, a list menu appears on the Tools panel, Brush Mode (see the image below).

Select Brush tool
The "Brush Mode" button contains the following modes: Example:
Brush Mode
- Flash previews your paint path as you paint, but it only affects the areas specified in the Paint modes. When you release the mouse, these previews disappear.

Near the Brush Mode button there is "Brush Size" (with a list of options to set the brush size), and "Brush Shape" (with a list of options to set the shape of the brush).
You can set a color for the Paint Brush from "Fill Color".

Brush Size and Brush Shape

Brush Size and Brush Shape

Spray

The Spray Brush tool allows you to spray particles onto the Stage using the current fill color.
It can be selected from the "Brush tool" button, by press and hold the click on it.
You can adjust the spray pattern by selecting Symbol and Brush options in the Properties Panel.
You can also use a movie clip or graphic symbol from the library as a particle to create a more complex pattern (see the image below).
Using Spray tool

Eraser Tool

The Eraser Tool is on the Tools panel, it erases everything your cursor touches (depending on the Eraser mode you've chosen) whatever if the drawing is made with "Object Drawing" or "Merge Drawing".
After you have selected the "Erase tool", in the options area of the Tools panel will appear three buttons for erase options:

Eraser tool Options

Eraser tool Options
By default, eraser is in "Erase Normal" mode, it erases everything your cursor touches. There are also other four modes , which have the following effects: Example:
Erase mode example
- Eraser only affects lines and shapes which can be edited, had no effect on the groups, text or symbols. Those elements can be removed by selection and then press the Del (Delete).

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
Brush and Eraser

Last accessed pages

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

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)