ActionScript 2.0 :: Pausing And Resuming A Background Sound On One Button?

Sep 14, 2010

I'm having problems with pausing and resuming a background sound on one button. I tried some examples from kennybellew.com tutorials, but it just wont work for me.I have done some button work before (toggling, turning layers on/off etc.), i just never had to deal with sound.

View 9 Replies


Similar Posts:


ActionScript 3.0 :: Pausing And Resuming A Sound Loop?

Dec 3, 2010

So my program starts playing and my background music starts to play and loops...

Actionscript Code:
mySoundChannel = mySound.play(0, int.MAX_VALUE);

but i'd like to be able to pause the background music and then continue looping. this is what i'm doing now after i've stopped the song and acquired it's current position, and am ready to play again...

Actionscript Code:
mySoundChannel = mySound.play(resumePosition, int.MAX_VALUE);

problem is that when it loops, it loops back to the resumePosition (as expected since that's when we told it to start playing from). so how to i resume AND loop starting over at the beginning of the song?

View 3 Replies

ActionScript 2.0 :: Pausing, Resuming Sound Loaded In Mc?

Mar 26, 2010

I haven't found this one yet, plenty about pausing sound, but I have sound loaded into a movie clip so:

Code:
Intro1 = new Sound (soundLoader);
Intro1.loadSound("SndIntro1.mp3", true);

I'd like to get a pause button to stop the animation, get the position of the sound, stop it also, and then clicking the play button will start the animation, and also the sound from the same position it was stopped (in other words resume the sound). Here's my script for the pause button, it's stopping the animation, but still not the sound:

Code:
on (release) {
pauseTime = Intro1_sound.position;
Intro1_sound.stop();
stop();
}

View 3 Replies

Automatic Pausing And Resuming?

Aug 10, 2009

I've been making a short movie. It contains some tweens (both shape and motion). I want the movie to automaticly pause at a specific moment (which bisects multiple tweens) and for a button to appear to contine the movie

View 5 Replies

Movie Automatic Pausing And Resuming

Jul 5, 2009

I've been making a short movie. It contains some tweens (both shape and motion). I want the movie to automaticly pause at a specific moment (which bisects multiple tweens) and for a button to appear to contine the movie. I am completly new to flash and will have to have everything spoon fed to me.

View 1 Replies

ActionScript 3.0 :: Pausing And Then Resuming Sounds

Dec 4, 2009

I have some trouble with pausing and then resuming sounds in as3.

[Code]....

Pausing goes fine, however when I resume the song again, the sound starts playing a few seconds before I actually paused (so parts of the sound repeats itself). This is really annoying.

View 4 Replies

ActionScript 2.0 :: Resuming Sound During A Flash Movie?

Jan 15, 2010

I am working on a Flash movie that contains sound. I am using the stop ALL sounds to turn off the sound but I am having trouble finding code for Actionscript to resume or even replay the music without interrupting the movie.

View 6 Replies

ActionScript 3.0 :: Stop Button Sound But Not Main Background Sound?

Aug 5, 2010

I have a bit of a problem with sound.. I have a main container animation with background sound that's loaded with soundChannel..I also have an externally loaded SWFs with Movie Clip buttons that have a sound ON ROLLOVER on the timeline..after rolling off - I place the:SoundMixer.stopAll();to stop the button from playing the sound once the mouse is rolled off.. However, the problem I'm running into is that it also stops the sound of the main container movie cli

View 1 Replies

ActionScript 2.0 :: Background Sound And Button Sounds?

Aug 8, 2003

I made 2 sounds: background and button sound.This is the code:

_root.onLoad = function() {
backgroundSound = new Sound(this);
backgroundSound.attachSound("sound_root");

[code]....

View 3 Replies

ActionScript 3.0 :: Pausing Background Music In Parent Movie?

Sep 7, 2009

I've got a single scene Flash movie with a number of embedded MovieClips. In the parent movie, on the first Actions frame, I have the following script to get the background music to play:

[Code]....

View 3 Replies

ActionScript 2.0 :: Pausing Sound In FMX?

Jan 12, 2004

my problem pertains to Flash MX and pausing .mp3 files I have loaded externally. I have searched this forum, but every useful thread i found references [URL] but that page gives me and http 500 internal server error... ie the site is down.

but my problem is that I need to know if there is a reletively simple (or actually any at all) way to pause a song through a button that i have externally loaded... this is my code so far:

[AS]
Song = new array("tonight.mp3", "when in doubt.mp3", "hey now.mp3");
bgSound = new Sound(this);
bgSound.loadSound(Song[Math.floor(Math.random()*3)], true);
bgSound.start();

[code]...

It looks a little complicated because i have a volume slider in there, as well as loading songs randomly... but what i need to know is how to get the stopB button to pause the song... and the playB button to resume it... right now stopB just stops the song... and playB loads a new one randomly.

View 4 Replies

ActionScript 2.0 :: Pausing A Mp3 Sound

Feb 29, 2004

i am making a music player in flashmx but i don't know how to pause the mp3.

View 4 Replies

ActionScript 2.0 :: Pausing Animation AND Sound?

Aug 29, 2005

Can you pause both animation and sound? I know you can do

on(release){
stop();
stopAllSounds();
}

but you can't start the sounds again after that at the place they were at, like a soundtrack. What is the actionscript (if it exists) for a pause and play buttons that also pause and play the sounds?Imported movies pause sound with stop();, do i have to export an swf with like just the soundfile and put that in? Cause i think that would work but sounds like too much trouble.

View 9 Replies

ActionScript 3.0 :: Pausing & Resume Sound?

Oct 15, 2009

I'm trying to pause and resume play a background sound loop and tweens with the same button

The animation pauses and resumes fine. But when the music resumes, it gets cut-off early, and it doesn't loop anymore.

The code is as follows:

[code]...

View 3 Replies

IDE :: Image Galleries - Pausing Sound From External SWF

Apr 18, 2010

I am making a set of image galleries which will have looping background music. What are your opinions about the recommended method to bring music in? I am happy with the attachSound and loadSound methods, but wondered whether attaching a soundtrack.swf using loadMovieNum would be better. If so, I only know how to stop and start the music, not pause it and restart where it left off, which is important if I add a narration. Sound Objects seem more versatile because they let you use "position/1000", but from what I have found on the forums I have searched through, I may have to load the swf into a Movieclip or perhaps use _level somewhow?

Here is the code, which works well, but does not "pause" the music, it just stops and starts at the beginning. Code is in the root timeline of my soundControls_mc (play/pause button).
[Flash 8 - AS2]
loadMovieNum("includes/number10.swf", 100);
soundOn = true;
this.onRelease = function() {
if (soundOn == true) {
unloadMovieNum(100);
[Code] .....

View 2 Replies

ActionScript 3.0 :: Animation Pausing When Lost Focus, But Sound Continues?

Jul 9, 2010

I have an issue with an animation/movie thingy i am making

When the user for example, Switches a tab in firefox or something. The sound on the video will continue to play, but the animation will pause. Leading the animation to become out of sync with the sound.

Is there a way to make the animation continue playing even if the tab has been changed??

View 8 Replies

ActionScript 3.0 :: SoundManager - Pausing Sound By Referencing Code In Separate File?

May 22, 2009

I wanted to have this Zombie Penguin enemy use a walk sound (it would be odd if he moved and was silent) but because it is initializing the whole world, simply coding the sound into his animation state won't work because it will play the sound for every existing Zombie Penguin in the world, not just the one on the screen.

Now I've tried to get around this problem by using a SoundManager class [URL] to load and play/pause the sound when necessary. I've got this working by placing a movieclip above the world and hittesting everything and when it finds a Zombie Penguin activates the SFX. If it finds the enemy and you leave the room or kill the enemy (basically any way it is removed from the screen) it will pause the sound (not stop) and then unpause if you go back/find another instance of that enemy.

The problem is, though, that if I STUN the enemy (not kill it) it plays it's dizzy animation (which consists of hit sitting down with stars spinning around it's head) the walking SFX continues to play as the enemy is still on the screen.Now in the Zombie Penguins .as file it has a boolean that for being stunned or not (bStunned), and a function (public function getZPStun():Boolean -- returns bStunned). this bStunned boolean is set to a default of false.I figure that I just have to reference that somewhere in the following code, but I'm not sure where. The Zombie Penguin's .as is ZPEnemy, so I'm calling it like so:

ZPEnemy.getInstance().getZPStun()

I've tried calling it as part of an if statement a in a number of placesin hopes that calling it will relate the current state of the bStunned boolean, but I can't seem to get it to work.

Code:

var bNotPenguin = true;
for(var i = 0; i<this.numChildren; i++) //** Sound Manager Coding (May 15)
{

[code]....

View 4 Replies

Actionscript 3.0 :: If Press Play Button While The Sound Is Already Playing It Has The Same Song Playing In The Background

Nov 13, 2010

I have a sound clip that I'm loading externally into my flash file. The code I'm using looks like this and is placed in the as layer on the first frame,

var mySound:Sound = new Sound();
var myChannel:SoundChannel = new SoundChannel();
var myTransform = new SoundTransform();
var lastPosition:Number = 0;
mySound.load(new URLRequest("introaudio.mp3"));
myChannel = mySound.play();
[Code]....

View 14 Replies

ActionScript 2.0 :: Use With Music Is Affecting All Other Sounds - Button Sounds And Background Sound

Apr 16, 2010

I followed the mp3player tutorial (part 3) from [URL] and got it working fine. Only problem is that the setVolume I'm trying to use with my music is affecting all my other sounds - button sounds and background sound. I'm aware of the createEmptyMovieClip/attachSound approach and got it working on my other sounds. But Lee's tutorial-mp3player is using a slight different technique, and so my normal approach doesn't quite work.

[Code]....

View 7 Replies

ActionScript 2.0 :: Pausing A Movieclip From A Button Inside The Movie Clip?

Aug 13, 2009

I have attached the file to this document, but basically I have a street scene which will eventually have about 5-6 people walking along the stage.

Currently on rollover of a button within the movie "movement_clip" my button will go to the overstate which shows a still of the animated women standing still. However...what I want to do on rollover, is I also want to pause "movement_clip" wherever it is in the process and then continue from where it got paused on rollout.

View 7 Replies

Slideshow Not Resuming After Certain Buttons Are Used

Dec 10, 2010

I have this slideshow that I'm so close to having completed, but there's one issue I'm having with it not resuming after certain buttons are used. I've tried to figure out what could be causing this but I just can't see what it could be. I feel I'm so very close to having this completed if it weren't for this one issue.

In the slideshow buttons '1' and '2' work perfectly, however buttons '3' to '6' are not working completely as they should. During the slideshow, as it plays through the slides if you click on button '1' or '2' you are taken to the corresponding slide and then the slideshow automatically resumes, which is correct. However, if you click on any of buttons '3' to '6' you are still taken to the corresponding slide, but the slideshow does not resume and stays on that particular slide. I've looked over the Action Script 3 code several times and I just don't see what could be causing this but I'm not too experienced so there could be some error, no matter how minor, that I am missing.

View 9 Replies

Professional :: Button Over Sound Plays Again Before Button Down Sound

Apr 15, 2010

I've assigned a sound to the button over frame and a different one to the button down frame. When i over over the button the button over sound plays. When I then click the button, the button over sound plays AND the the sound I put in the button down frame plays.

View 8 Replies

ActionScript 3.0 :: Flash With Background Sound

Feb 16, 2010

I am a beginner at AS3 programming. I like to make a flash with background sound (*.mp3 files from *.xml list). Everything works fine, but when I press "onClick" button I got output error.[code]

View 2 Replies

ActionScript 3.0 :: Sound Keeps On Playing In The Background?

Feb 16, 2012

I am developing a cd presentation for someone. It has audio, video, images, text embedded in it.Client doesn't want external data which can be easily accessed & copied. He wants all data should be in the exe itself.Now, when i embed video in it, sound keeps on playing in the background and even overlaps.I am attaching link to my .fla file.

View 9 Replies

Flash :: Add Background Sound To My Website?

Aug 29, 2009

I would like to add background music to my flash website, but i have tried many ways of doing so. currently what i have is one movie clip which consists of two frames - one has the play icon and the other with a pause icon and the sound file. however, after some time and also a few button clicks, the sound repeats and results in the sound playing over the previous sound.

View 3 Replies

ActionScript 1/2 :: Make Button On Rollover Starts Sound And Rolloff Stops Sound?

Jul 28, 2009

I have several buttons in a movie and I want to be able to rollover an individual button and play the sound for that button and when I rolloff I want the sound for that button to stop.

View 6 Replies

ActionScript 2.0 :: Add Mute Sound And Unmute Sound Script In A Single Button?

Sep 21, 2011

how to add mute sound and unmute sound script in a single button?

View 2 Replies

ActionScript 2.0 :: Stop One Sound With Background Music?

Apr 20, 2011

I'm triying to stop a sound of a button, while you hear a background music. The music is assigned in the timeline for the animation. When the animation stop at a specific frame (activity), the button are showed. At this point is all ok.

I don't understand... I am very specific to wich sound must stop. Is there a bug?

In AS 3.0 is more easy when you use the SoundChannel, but in AS 2.0 ?

View 3 Replies

ActionScript 2.0 :: Background Tunes - Sound Off / On Buttons

Nov 7, 2003

I have a .swf playing some background tunes, I have the soundsOff button working, but can't find
some basic action to get the sound started again?....what's the trick?

View 2 Replies

ActionScript 2.0 :: Play Background Sound And Keep It Continuos

Oct 27, 2009

I have applied sound to my website in flash. I have different pages designed in different scenes. And sound control is present on each and every scene. I browsed through the net and found a tutorial which showed how to play background sound and keep it continuos throughout the navigation via different scenes. Inicially i had a problem where the sound restarted when i went to a new scene but now that problem is solved . My current problem is, when my site loads the music starts to play which is fine. Then when i press on the sound button to stop it . The action is to Start Sound and when i press it again It stops. But When i stop it and go to any other button and navigate to some other scene , the sound restarts.The sound sequence needs to be Stop on the first click and Play on the second.But i also want the sound to autostart when site loads. And i because i have different scenes i have applies a complicated action scrip from a tutorial.which goes as follows:-On the first frame of sound layer i have this action script --->

[Code]...

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved