Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
The sound object is not literally "paused". Instead, the sound object is stopped, and at the point it is stopped, its position in milliseconds is recorded as a variable. To continue the sound object from its "paused" location, the position property variable is used in the next start command for the sound object. For example, the following code would work for a pause and continue button:
For the pause button:
on (press) {
myMusicPosition=_root.myMusic.position/1000;
_root.myMusic.stop("myMusic01");
}
For the continue or play button:
on (press) {
_root.myMusic.start(myMusicPosition,0);
}
For the stop button:
on (press) {
_root.myMusic.stop("myMusic01");
}
In the above example, "myMusicPosition" is defined as the current position of the sound object "myMusic" when the pause button is pressed. When the play button is pressed, the starting point for "myMusic" is set to myMusicPosition.