Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone tell me how to hide anchor points in canvas using kinetic.js and display anchor whenever we click on image. For example check this link in that we can hide anchor points. I have done application in that i need to hide anchor points after clicking on canvas,I can take no.of images and can drag,drop,re size and save them as image. I tried to hide anchors but unsuccessful can any one guide me thanks in advance.

share|improve this question

1 Answer

up vote 2 down vote accepted

This is not a complete solution, but take a look: http://jsfiddle.net/n9FLA/1/

what you want to do is attach event handlers so that you add or remove anchor points from a group. Looking at the link you provided you should make changes like:

    yodaGroup.on('mouseover', function(){
         addAnchor(yodaGroup, yodaImg.getX(), yodaImg.getY(), 'topLeft');
         addAnchor(yodaGroup, yodaImg.getX()+yodaImg.getWidth(), yodaImg.getY(), 'topRight');
         addAnchor(yodaGroup, yodaImg.getX()+yodaImg.getWidth(), yodaImg.getY()+yodaImg.getHeight(), 'bottomRight');
         addAnchor(yodaGroup, yodaImg.getX(), yodaImg.getY()+yodaImg.getHeight(), 'bottomLeft');
         layer.draw();
    });
    yodaGroup.on('mouseout', function(){
        var yodaKids = yodaGroup.getChildren();
        for(var i=1; i<yodaKids.length; i++)
              yodaKids[i].hide(); // .remove() would also work, or .destroy()
        layer.draw();
    });

You have to structure the logic and choose the events you want, but this the way you could do it.

share|improve this answer
I will give example,the concept which I asked in this question is same like in (microsoft office word) that when we select image at that time only anchors will display. hope anyone unterstand what i want say – Geetha Feb 13 at 4:08
thanks for the reply what have u given is working but can we use that without mouse over and mouseout – Geetha Feb 13 at 6:38
1  
yes, just change it to whatever event you want, I used mouseover/mouseout as an example – EliteOctagon Feb 13 at 14:29
1  
you can do mousedown, mouseup, dragstart, etc. But what you should really do is just create a flag called 'selected' and set it to true or false when an image is clicked on and off. – EliteOctagon Feb 13 at 14:31
As a side note, KineticJS has plans to create an Anchor plugin that will do this automatically for you. Coming sometime in May though :) – Eric Rowell Feb 14 at 5:59
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.