deleting a line after selecting the desired line on clicking a button kinetic js

65 Views Asked by At
var line = new Kinetic.Line({ points: [415, 115,617,234], stroke: 'gray', tension: 2});
line.addEventListener('click',function(e){ 
debugger; 
// alert(e.x+'.'+ e.y); 
// popup; 
});

On clicking the line it should be selected.on clicking other place expect line it should be deselected.after selecting the line if i pressed a delete button the line should get destroyed how to do it.

1

There are 1 best solutions below

2
On

Not exact as your requirement, but you double click on line, line will be removed from layer

here is demo.

var stage = new Kinetic.Stage({
        container: 'container',
        width: 578,
        height: 200
      });

      var layer = new Kinetic.Layer();

      var redLine = new Kinetic.Line({
        points: [73, 70, 340, 23, 450, 60, 500, 20],
        stroke: 'red',
        strokeWidth: 15,
        lineCap: 'round',
        lineJoin: 'round'
      });
redLine.on("dblclick",function(){
        this.destroy();
        layer.draw(); 
    });

layer.add(redLine);
stage.add(layer);