// Example by Krister Olsson
import krister.Ess.*;
// start up Ess
Ess.start(this);
// create a new AudioChannel
AudioChannel myChannel=new AudioChannel();
// destroy it
myChannel.destroy();
// we are done, clean up Ess
Ess.stop();
Description
Stops an AudioChannel (if playing) and destroys it. Ess.stop() destroys all active AudioChannels so it is not usually necessary to call this method