Hello everyone,
var stage = new Kinetic.Stage({
container: 'container',
width: 1230,
height: 40
});
var layer = new Kinetic.Layer();
var rectHeight = 30;
var rectWidth = 100;
var rectY = (stage.getHeight() - rectHeight) / 2;
var triangle = new Kinetic.RegularPolygon({
x: 25,
y: 25,
sides: 3,
radius: 20,
fill: '#00D2FF',
stroke: 'black',
strokeWidth: 2,
draggable: true,
dragBoundFunc: function(pos) {
return {
x: pos.x,
y: this.getAbsolutePosition().y
}
}
});
// add cursor styling
triangle.on('mouseover', function() {
document.body.style.cursor = 'pointer';
});
triangle.on('mouseout', function() {
document.body.style.cursor = 'default';
});
triangle.on('dblclick', function(){
//alert("down");
layer.clear();
stage.clear();
});
layer.add(triangle);
stage.add(layer);
}
This is a snippet of my code. This will create a triangle that is able to drag (got it from http://kineticjs.com/ tutorial).
Purpose: I want it to delete the triangle when i double clicked it.
Problem:
i. The triangle can be deleted but when you redraw the triangle, i will draw below the current location where it is deleted. Same thing happen when it is removed and redraw again and again. It will end up at the bottom of my screen after few times of redrawing.
ii. Alert() is used to pop up a notice right? When i use alert(), the triangle can be removed from the screen. If not, it stays there.
Is there anyway to remove the object by mouse event and when another mouse event happen, it will draw the object at the same location?