I'm searching a event like:
stage.on('drag',function(){
// do something
});
Only I can search in Internet is events dragstart and dragend. Something like that is exist in KineticJS?
I believe you're looking for the event dragmove
?
If so:
stage.on('dragmove',function(){
// do something
});