Flash Course

Adobe Flash has a special serie of options for color effects, named Filters.
These options for Filters effects are: Drop Shadow, Blur, Glow, Bewel, Gradient Glow, Gradient Bewel and Adjust Color
- You can find them in the "Properties panel", in the FILTERS subpanel (see the image below).
This subpanel appears only for objects that can apply Filters effects: Text, Button Symbol and Movie Clip.

- For other types of objects, drawings, groups or images; you must convert them into a Symbol to be able to apply Filters Effects.

Adding filters

To add Filters effects to an object on the stage, perform the following steps:

  1. Select the respective object on the stage (it must be Text, Buton or Movie Clip)
  2. In the Properties panel find Filters, and click on it (if it's not already opened). Flash will open a subpanel under it, for filter effects.
    Filtres sub-panel
  3. Click on the small button (Add Filters) in the lower-left corner of this sub-panel (as you can see in these images). This will open a menu with various effects, choose one.
    Add Filtres effects
  4. The respective effect is added in the sub-panel, with its setting options, and in the same time it is applied to the object selected on the stage.
- Each effect has its own properties through which you can set different changes for that effect, such as: color or combination of colors, angle, distance, quality, and others.
- You can also add multiple filters to the same object on the Stage, to get a variety of color effects. They are included one by one in the Filters sub-panel.
- To disable an effect of the ones added in the "Filters subpanel" click on its name in the sub-panel and then on the small button "Enable or Disable Filtre" (with the image of an eye, located on the same line as "Add Filters"). The effect will remain in the sub-panel and can be activated from the same button.
- To delete a "Filter", select it and click on the button "Delete Filter" (from the same line).
- The "Reset Filter" button (with a reversed arrow) restores the effect properties to the initial values.

Click on the image below to see a Flash presentation which shows you how to apply Filters to a text, and to change their properties.

- Tutorial Filters effects

tutorial_filters_effects_steps
- The FLA file with this example can be downloaded from: Tutorial Filters effects.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag renders as emphasized text, displaying the text oblique?
<strong> <pre> <em>
<p>Web development courses: <em>CoursesWeb.net</em></p>
Which CSS property defines the space between the element border and its content?
margin padding position
h3 {
  padding: 2px 0.2em;
}
Click on the method which returns the first element that matches a specified group of selectors.
getElementsByName() querySelector() querySelectorAll()
// gets first Div with class="cls", and shows its content
var elm = document.querySelector("div.cls");
alert(elm.innerHTML);
Indicate the PHP variable that contains data from a form sent with method="post".
$_SESSION $_GET $_POST
if(isset($_POST["field"])) {
  echo $_POST["field"];
}
Adding Filters effects

Last accessed pages

  1. Select the Content of HTML Element (4522)
  2. Adding text with ActionScript 3 (5638)
  3. CSS cursor property - Custom Cursors (6372)
  4. Zodiac Signs PHP code (7271)
  5. Using openssl_encrypt and openssl_decrypt in PHP (1312)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (458)
  2. CSS cursor property - Custom Cursors (68)
  3. Read Excel file data in PHP - PhpExcelReader (46)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (44)
  5. PHP Unzipper - Extract Zip, Rar Archives (41)