I am creating rectangle nodes with a for() statement and now I need to get the reference to each one. There seams to to be some black magic going on to create these canvas objects ,so it makes it hard to access items without ids to reference. Can someone clear this up or point me in the right direction?
for(x=1;x<=8;x++)
{
var rect = new Kinetic.Rect({
x: 300,
y: 80+offset,
width: 60,
height: 20,
fill: 'white',
stroke: 'black',
strokeWidth: 1,
draggable: false
});
rect.on('mouseover', function() {
writeMessage(messageLayer, this.getY());
});
// add the shape to the layer
layer.add(rect);
offset += 120;
Thanks