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.
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.
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?
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.
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.
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.
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.
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:
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!)
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:
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?
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] .....
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]...
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?
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.
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.
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.
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:
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;
**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.
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.
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.
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.
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...
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?