I'm using Java sound to play back a number of sound samples with the Clip.start() method.
Given this, what is the best way to control the playback volume?
In particular, I'm very keen that the solution will work reliably across platforms.
...
I want to smoothly transition between two audio clips that are loaded into an array of javax.sound.sampled.Clips in my Java applet. At the moment I stop one clip and start the next but this produces audible clicking noises due to the audio stopping and starting abruptly. I need to use the Clip interface so that I can do looping and trans...
Ok so I have 3 movie clips that are setup in rows. I need these movie clips to be positioned in a certain position and each of the elements in side of them in another position. Now in order to do that I have to set the width so that I can put the rows where I need them however after setting the width and then adding a child to it seems t...
For example, I've created in Flash CS a movie clip CampfireMC, which contains child movie clip:
m_fire:FireMC
FireMC is an animation of flame
CampfireMC controls playback of m_fire, for example, last frame of CampfireMC uses action code:
m_fire.gotoAndStop(m_fire.totalFrames)
And the question is how to replace (not delete/add, as m...
I finally got my sound clip to work in my java application.
This is picky, but there's a minor pause between each sound loop. Is there any way to "merge" the two loops slightly so the sound seems continuous?
...