Flash Course

Sounds are added in Frames in the Timeline, after the file with the sound was imported in the Library panel.
You can use sounds from the Sounds Library integrated in the Adobe Flash program or they can be imported from your computer (with File -> Import -> Import to Library).
Flash recognize the following types of audio files: MP3, WAV, AU, ASND (obtained with Adobe's Soundbooth).
- In this tutorial we use sounds from Flash Sounds Library.

Buttons have a specific Timeline, with 4 special frames: Up, Over, Down and Hit. To add sounds to buttons usually we use the "Over" and/or "Down" frames.
- "Over" performs the efect when the mouse is over the button.
- "Down" trigger the effect when the button is clicked.


In the following example we create a simple button, and add in it a sound effect for the moment when the mouse is positioned over the button, and another sound when the user clicks on the button.
Follow these steps:
  1. Open a new Flash document. Then add in the Library panel 2 sounds from the Flash Sounds Library.
    To add the sounds, click on the menu Window -> Common Libraries -> Sounds, open the Library panel (Ctrl+L), and then from the Sounds Library drag with the mouse two sounds in the Libray panel (for example "Animal Dog Bark 26.mp3" and "Animal Mammal Carnivore Domestic Cat Meow 02.mp3").
    Library Sounds
      - You can test the sounds by clicking on them, and then on the "Play" button (top-right corner).
  2. Close the Sounds Library, and choose the tool for drawing oval shapes (Oval Tool) and draw a circle on the Stage.
  3. Now the circle must be convertet into a button.
    Make sure the circle is selected (if not, select it with "Selection Tool"), click on the menu Modify -> Convert to Symbol, select the Button type option (you can also give it a name, in the Name box) and click OK.
  4. The button is added in the Library. Double click on it to enter its editing page. In this page, right-click on the "Over" frame in the Timeline and choose Insert Keyframe. Also change the color of the circle (from "Fill Color"), to see the diference when the mouse will be over it.
  5. Now we add a sound in the "Over" frame, that will be heard when the mouse is over the button.
    With this frame selected, open the Properties panel, then go to Sound, click on the list of options from Name, and choose one of the added sounds. Then, set Start to Sync (it is explained at the end of this tutorial what the options from "Sync" make).
  6. Now we add a sound in the "Down" frame, that will be heard when the button is clicked.
    Right-click on the "Down" frame in the Timeline and choose Insert Keyframe. In Properties panel, go to Sound, and chose the other sound in the options list from Name, then select Start from Sync.
  7. The button was made, the sounds added; so press "Ctrl+Enter" to test the result.
      - Flash will display a presentation like this (click on the green button):

- Tutorial adding sound in Button

- In the following presentation you can see how to do this example (click on the picture below).

tutorial_sounds_buton_steps
- To download the FLA file with this example, click: Adding sound in Button.

Options for sound

The Sound sub-menu in the Properties panel contains a few options to define individual properties for every sound in your Flash document:
- Name - contains a list with the sounds included in the Library.
- Synk: - Effect: - Repeat - specifies how many times the sound will be repeated. Loop sets to repeat the sound forever.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
What attribute makes the input text box to not be modified by the user?
checked="checked" readonly="readonly" disabled="disabled"
<input type="text" value="fixed-value" readonly="readonly" name="a_name" />
What CSS property allows you to create rounded corners in your webpage design?
background-size border-size border-radius
.class {
  border:2px solid blue;
  border-radius:1.2em;
}
What instruction displays a confirmation dialog box to the viewer, who must then click OK or Cancel to proceed?
indexOf() confirm() prompt()
var ques = window.confirm("The result of 0+0 is 0?");
if (ques) alert("Corect");
else alert("Incorrect");
Indicate the PHP function that returns the lowest number of the parameter values.
floor() ceil() min()
$min_nr = min(12, 8, 25, 13);
echo $min_nr;        // 8
Adding sounds to buttons

Last accessed pages

  1. The Stage, Panels and Tools in Flash (10392)
  2. PHP Unzipper - Extract Zip, Rar Archives (32327)
  3. Alert, Confirm and Prompt (4630)
  4. ActionScript 3 - Change MovieClip Color (9049)
  5. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (142867)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (100)
  2. PHP-MySQL free course, online tutorials PHP MySQL code (11)
  3. The Mastery of Love (11)
  4. Read Excel file data in PHP - PhpExcelReader (10)
  5. PHP-MySQL Scripts (10)