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.

I have a group of Kinetic.Rectangle objects with draggable set to true. No matter how much you drag the group around, calling rect.getX() or rect.attrs.x, where rect is one of the rectangle objects in the group, e.g.:

var rect = group.get('.rect')[0];

always returns the same value. Anybody know how the get the actual x and y values of where each rectangle is being drawn?

Thanks!

share|improve this question

1 Answer

up vote 5 down vote accepted

I guess the reason that you get the same results is because you get the relative position of each rec. I usually use the following codes to get the position of my objects:

Shape.getAbsolutePosition().x

or

shape.getPosition().x

hope this would be helpful.

share|improve this answer

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.