ActionScript 3.0 :: Make A Sound-loop Player?

Dec 9, 2010

I've been trying to make a sound-loop player for quite some time now (i'm new to as3).i've made six letters converted them into buttons and i want them to play a different wav sound loop each one whenever i click on them and to stop the sound when i click again.This works fine for the first button but not for the rest of them because i dont know where to insert the similar code for the rest of the buttons.

Here's the code that works perfect for the first button:

import flash.media.Sound;
var sound:Sound = new The_Rloop5();
var soundControl: SoundChannel = new SoundChannel();

[code].....

Now the only thing that i managed to do is to play the same sound on both of the two buttons.

View 0 Replies


Similar Posts:


AS3 :: Can't Make Sound Loop

Jun 8, 2008

I'm using this code to play/stop a sound in my flash movie, but I can't figure out how to make it loop. What do I need to do?[code]

View 3 Replies

ActionScript 2.0 :: Make A Loop Sound Board?

Sep 16, 2010

I have spent the last four hours trying to work this out, using a number of different tutorials and always running into roadblocks in one form or another.

I'm using Flash CS3 with Action Script 2.0 enabled.

Essentially, I want to be able to make individual buttons to play in one frame on the main timeline that turn on and off simple loops that I've made.

I have a video of a man dancing, and I want to give the user the ability to press nine buttons and activate each loop to play over the video.

- I need each loop to be able to layer - so, each button controls only it's own loop - giving the user the ability to compose the music that the dancer is moving to.

The way I though I would do this would be to make a single button for each loop, that when clicked played the loop, and then when clicked again muted that single loop, and then when clicked, played it again and so forth.

- I have the nine loops cut up and in the library, but I don't know how to program this.

Additionally, I would really prefer the loops to not be playing, and for the user to have the chance to build the piece of music around the dancer.

View 0 Replies

ActionScript 2.0 :: Make A Sound Loop Seamlessly?

Feb 14, 2005

So I got a loop that I'm loading into Flash with the Sound object. The sound loads good and it starts playing but when it loops back to the beginning there's some silence and then it loops again. The sound loops fine in a sound editing program, the only problem is that Flash leaves a gap when its going to start again. Anyone has come up with a solution to make a sound loop seamlessly?

[Code]...

View 4 Replies

ActionScript 2.0 :: How To Make Sound Loop Infinately

Aug 12, 2002

I just want sound to loop infinately. What do I have to type in the "loops" box to make it do this?OR do I have to use script, for example, an "until False" script loop.

View 1 Replies

Professional :: Simple Sound Player - Visitor To Hear The Sound And Be Able To Apply Simple Controls?

Aug 1, 2011

Flash is not in my toolset, but I am an old Director jock and have spent some hours dipping my head into the Flash manual.  I suppose that makes me a promising beginner-level poster. I'm working in CS5.
 
I need to make a simple Flash-based sound player for a website for a newly-released novel (http://www.bearriverbooks.com/index.html).  I want the user to click on what appears to be an icon (or image), which kicks open a simple controller and starts playing a sound file (a radio interview, which I will probably export using Flash's voice compression).  Nothing fancy.  Just want the visitor to hear the sound and be able to apply simple controls (stop/start/rewind/volume).
 
I can learn ActionScript, I suppose, since I used to dream in Lingo, but my life would be a lot simpler if I could just publish a controller without having to roll my own.  I'd like to think there's a magic button somewhere that can do this, but I haven't found it yet.

View 4 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 :: Movie And Sound - Make The Sound Fade Away When The Mouse Is Rolled Away?

May 18, 2007

I use Flash MX 6.0

1) I have a button and when I put cursor over it, it must start looping a sound. When I drag away, the sound must stop. I would be even cooler if it was possible to make the sound fade away when the mouse is rolled away. I have no problem creating another sound file that fades my current sound away.

2) I have a button which represents a knife, that should stab something (a panel) once pressed. So fist the knife must be clean. but after one or more presses, the blood should remain as a movie clip (as I want to animate the dripping blood)

3) once rolled over a button, the sound must start looping (as I wrote in 1.) AND the knife should slowly go backwards (MC). BUT when I roll mouse away, the sound fades away (as in 1. again) PLUS the knife should slowly move back to its place in stead of just jump from one place to another.

View 1 Replies

ActionScript 3.0 :: NetStream Choppy - Make A Character Start To Talk When The Sound Starts And Stop Talk When The Sound Stops

Aug 5, 2010

Need to make a character start to talk when the sound starts and stop talk when the sound stops so I'm using this:

[Code]...

View 2 Replies

How To Loop Streaming Sound/mp3

Apr 30, 2009

I have CS4 but saving doc as CS3 so I hope I am in the right forum. I added a behavior as sound streaming mp3. I want to loop it.. Here is the action code that was generated. How would I change it to looping. I changed the true to false at the end of the code but that didn't work. here it is:

//Load Streaming mp3 behavior if(_global.Behaviors == null)_global.Behaviors = {}; if(_global.Behaviors.Sound == null)_global.Behaviors.Sound = {}; if(typeof this.createEmptyMovieClip == 'undefined'){ this._parent.createEmptyMovieClip('BS_figaro',new Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000) ); _global.Behaviors.Sound.figaro = new Sound(this._parent.BS_figaro);

[code]....

View 6 Replies

ActionScript 3.0 :: Loop Sound Without Gap?

Jan 14, 2010

How can I loop a sound without the gap? If i try

ActionScript Code:
play(song, 100);

it will have a gap everytime it loops, how can i fix that?

View 1 Replies

ActionScript 3.0 :: Loop Sound In It?

Jan 5, 2011

I have managed to get my sound playing from the library but would like to know what the simplest way to loop the sound in as3 would be, (using the smallest amount of code as possible preferably!)

View 3 Replies

IDE :: How To Loop Streaming Sound/mp3

Apr 30, 2009

I added a behavior as sound streaming mp3. I want to loop it.. Here is the action code that was generated. How would I change it to looping. I changed the true to false at the end of the code but that didn't work.here it is:

//Load Streaming mp3 behavior
if(_global.Behaviors == null)_global.Behaviors = {};
if(_global.Behaviors.Sound == null)_global.Behaviors.Sound = {};

[code]......

View 3 Replies

IDE :: How To Continuously Loop A Sound

Dec 3, 2009

how to continuously loop a sound, but all I have seen is aSound.play(0,1000);Not really a continueous loop. I was looking at watching for one of the COMPLETE dispatches (from the Sound object, or from the SoundChannel object), then start the sound again. The only thing is would this not start another channel?

View 3 Replies

ActionScript 3.0 :: How To Get MP3 Sound To Loop

Apr 28, 2010

How do I get this sound to loop?
"sonido1" - my mp3
Code:
stop();
import com.greensock.TweenMax;
import com.greensock.easing.*
function love() {
TweenMax.to(sonido1, 1, {volume:1, delay:0.5});
[Code] .....

View 4 Replies

ActionScript 3.0 :: Sound Loop Not Repeating

Apr 25, 2009

So, I downloaded a simple sound loop from Flash Kit.

I am building a Flash webiste and want the sound to loop once the movie loads.  I have added a stop and play button to the movie in case the viewer doesn't want the sound on.  I understand sound can be annoying.

I add the following code to the FRAME 1 of the movie.  Everything works fine but when the loop finishes, it just stops.  How do I get it to continue looping?  Also, as I navigate to other sections of the movie.. I want it to continue playing and not restart when I go back to say "Home".  Home starts at frame 1 as well.[code]...

View 9 Replies

Cs5 :: Flash Animation And Sound Loop

Jun 17, 2010

ok so im having an issue with Flash CS5.I have a sound looping, and my animation is only 13 frames long, while the song is like a minute long, so each time the animation loops threw the default "Loop Playback" a new sound audio is played which os overlapping the previous over and over causing a massive echo effect.Whats the best way to loop both of them insync, or atleast copy and paste the animations frames and make it the length of the song?

View 1 Replies

ActionScript 3.0 :: How To Stop And Loop Sound

Feb 27, 2008

I have created a button which plays an external MP3 file, but the first problem is it only plays once. What script do i have to add so the sound continually loops. Secondly, I have created a button which stops music, but I can't figure out the code which stops the MP3 file playing. I've tried backMusic.close();, but an error message is displayed as the sound is already loaded up.

Heres the ActionScript Code:
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.text.*;
[Code] .....

View 4 Replies

ActionScript 2.0 :: Attaching Sound Via Loop?

Feb 10, 2009

Is there some secret to attaching sound via a loop? I have had to hard code this and write it out 26 times.

Here's what I want:

ActionScript Code:
for(k=1;k<=26;k++)
{

[Code]....

I've tried it with _root, without, using a variable such as moji = eval("moji"+k) then moji.onPress, but nothing works. It just won't play the sound unless it's hard coded.

View 4 Replies

ActionScript 2.0 :: Stopping Sound Loop?

Oct 19, 2003

In the tutorials, there is a sound loop that you start with a button, The fla didn't have a stop script to add to a second button.

View 4 Replies

ActionScript 2.0 :: Loaded Sound Will Not Loop

Jan 16, 2004

I don't know why, but my sound dosn't loop, even though I set it to loop, here is the complete code: This is on my 1st frame:
[AS]
bg_music = new Sound(_root);
bg_music.loadSound("music.mp3", true);
bg_music.stop();
[/AS]

This is on my sound controller clip, shows the progress of the music playing and stuff:
[AS]
onClipEvent (enterFrame) {
var musicloaded = _root.bg_music.getBytesLoaded();
var musictotal = _root.bg_music.getBytesTotal();
var lprogress = Math.round((musicloaded / musictotal) * 100);
var musicttime = _root.bg_music.duration;
[Code] .....
I tried with "loop" too, but the sound just plays once.

View 1 Replies

ActionScript 2.0 :: Loop - Set Volume Down Just For One Sound?

Sep 20, 2006

can anyone tell me how to loop 5 different sounds, drums, bass, sax etc. When i use :

[Code]...

and play them all, it's ok, looping fine, but what i want to do is to have 5 buttons that control those 5 sounds. turning of and on some of them... i tried with "secondSound.setVolume(0)" to turn off 2nd sound, but that kill them all... CAN i SOMEHOW set volume down just for one sound? OR if thats not possible, i need bass or sax sound to start again, when button is clicked, in the same position where drums sound is...
but when loop start again to start also from "0" i've also tried reading firstsound position:

[Code]...

View 1 Replies

ActionScript 3.0 :: Add A Sound Loop To The Website?

Nov 12, 2009

I am trying to add a sound loop to my site and I have managed to get the sound to play and I can make two buttons start and stop. But how can I make 1 button that both starts and stops the sound?

Here What I have got.

Code:
var snd:Sound = new Sound(new URLRequest("dub.mp3"));
var channel:SoundChannel = snd.play();
var pausePosition:int = channel.position;

[code]....

View 4 Replies

ActionScript 2.0 :: Loaded Sound Won't Loop

Jan 16, 2004

I don't know why, but my sound dosn't loop, even though I set it to loop, here is the complete [code]...

View 1 Replies

ActionScript 2.0 :: [ F5 ] Limit A Sound Loop?

Nov 29, 2002

I'll try to be clear and concise:

**Say you have a single-scene 170 frame long movie.

**The first two frames contain a preloader function.

**Following the preloader is a very short introduction.

**Then, the real stuff begins including a background SOUND LOOP that begins at say frame 70.

**Now here's the actual problem: I want the sound loop to only play between frames 70 and 170. Nowhere else, especially not over the preloader if someone happens to restart the movie.

-Which is what happens now. It plays fine the first time, but then the loop just keeps going and going no matter what.

View 3 Replies

ActionScript 3.0 :: Make The Character In Flash Game Make A Jump When The Player Presses A Key?

Dec 19, 2009

i want to make the character in my flash game make a jump when the player presses a key,e.g. 'space',even the player release the key instantly,the character will still finish the complete jump process.

View 1 Replies

[CS3] Flash Loop On DVD Player?

Dec 18, 2008

I have to make a flash movie prop for a TV programme. They are filming in a restaurant which has a large flat panel TV on the wall and they want me to make a flash movie loop to play on the TV in the background whilst they're filming. This would be easy except that they can't attach a PC to it but want me to give them a regular (PAL) DVD to play on the player attached to it.

View 1 Replies

No Sound After Exporting Mp3 Player?

Feb 4, 2010

I'm sure this is me just being an idiot but I have a problem with an mp3 player I've built based on the AS2/XML tutorial on this website. Basically, everything works fine in Flash (running CS4) but when I open the HTML page, it doesn't play any sound at all. I've tried all sorts of configurations of object and embed tags but nothing seems to work. All the sound files are referred to via XML and the .swf, .xml and .mp3s are all located in the same directory.

View 2 Replies

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

Flash8 :: Plays A Sound In The Library On Loop?

Aug 21, 2011

i was looking into if there is anyway to work with sounds using actionscript?Basically im looking for something that

* Plays a sound in the library on loop

* stops that sound

* mute that sound (so it's still playing but cant be heard)

* unmutes that sound

the idea is so i can spread out this in scripts instead of in the frames.

View 1 Replies







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