clip

Controlling volume of a Clip when using Java Sound (javax,sound.sampled)

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. ...

Java: Quickly fade in and out the gain of a javax.sound.sampled.Clip

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...

As3 movie clip resize.

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...

How to replace movie clip in flash animation via actionscript code

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...

Java - Clip and Looping Sound

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? ...