I can't figure out how to use this... or any of the plugins for that matter. Where is some documentation or some kind of "how to" for setting stuff up??????? This is soooo frustrating and I don't know where to seek help.
I want to play a short wood block sound on mouseenter so need to trigger a sound file blox.swf.
I'm looking at:
jQuery Sound
This is a simple sound player, it uses flash to play the sounds, but DOES NOT provide a flash interface for any controls, everything is controlled via jQuery. What does this mean? How do I USE it???
$("#sound").sound({swf: url});
$("#sound").load(url);
$("#sound").play();
$("#sound").pause();
$("#sound").stop();
$("#sound").volume(0-100);
I have my mousenter triggering like below, but nothing happens. What am I doing wrong? And why doesn't the f-ing page tell one how to set it up???? What is assumed here that I'm not understanding? (I have indeed uploaded jquery.sound.js OK).
$('#cap').bind('mouseenter', function() {
$('#capB').show(8, function() {
$('#capB').hide(120, function() {
$('#cap').stop(false, false, function() {
$("#sound").sound({swf: sounds/blox.swf});
$("#sound").load(sounds/blox.swf);
$("#sound").play();
$("#sound").volume(100);(function() {
// Animation complete.
});
});
});
});
});