How to Synchronize Animation to a Specific Time within a Sound Object |
This tutorial has already shown how to set a variable to equal a specific time within a sound object using the mySoundObject.position property. The following is a simple trick for capturing the exact positions you need.
|
For the Flash example Fig. 15 above, to display the "7" animation, the following code was used:
| if (playing==true && mySound.position/1000 >= 8.5 && mySound.position/1000 <= 9.5) { _root.numbers.numbersText="7" } |
In the above example, when the sound object "mySound" reached 8.5 seconds, the contents of a dynamic text box with the variable name of "numbersText" was changed to "7".
If you have an audio file in which the positions you wish to capture are very close together, you could use the following player to capture a sound position on mouse click.
|
|
| Fig. 16: Capturing Sound Position on Mouse Click |
| » Level Intermediate |
|
Added: 2004-10-12 Rating: 8 Votes: 31 |
| » Author |
| Kenny Bellew is a technical writer and freelance flash programmer who specializes in Flash audio. He lives in Minneapolis, MN. |
| » Download |
| Download the files used in this tutorial. |
| Download (12927 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!