I have this code:
var load_image = function( src ){
var img = new Image();
img.src = src;
return img;
};
var stage = new Kinetic.Stage({container: 'main', width: 640, height: 480});
var layer = new Kinetic.Layer();
var setup = {
kick : {
sound: 'kick',
image_config : {
image : load_image( '/images/bass.png' ),
x : 250,
y : 50
}
},
snare : {
sound: 'snare',
image_config : {
image : load_image( '/images/snare.png' ),
x : 220,
y : 220
}
},
hats : {
sound: 'hats',
image_config : {
image : load_image( '/images/hi-hat.png' ),
x : 140,
y : 150
}
}
};
var img;
for ( name in setup )
{
img = new Kinetic.Image( setup[name].image_config );
img.on('click', function()
{
soundManager.play( setup[name].sound );
});
img.createImageHitRegion(function()
{
layer.drawHit();
},true);
layer.add(img);
}
stage.add(layer);
Here's the problem. For each attribute in the setup object, i want to add a click event to it. (shown above)
img.on('click', function()
{
soundManager.play( setup[name].sound );
});
so when the kick is kicked, it triggers the kick sound, when the snare is clicked it triggers the snare sound etc etc... The sound attribute in each setup attribute describes the sound that should be played.
The problem is, all click events trigger the 'hats' sound. I figured out that it is because the 'hats' attribute is the LAST one in the setup object.
What am i doing wrong? Is it because of the callback?
If you visit here you will see an example.
Also, in the example, if you double click, it only triggers the sound once, when it should trigger twice! whats up with that?

