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 created a kinetic.js layer and added some images on it. Now i want to remove all the images and redraw the layer by adding some new images(like a second level images for a game). I have tried using the layer.remove(image) function.

But after the redraw the old images are still shown whereas the new images are not added.

Could anyone help me to solve this issue..?

share|improve this question
Please add the work you have done so far. This would increase the possibility of getting good answers fast. – Sid Nov 27 '12 at 5:31

1 Answer

up vote 0 down vote accepted

I use

layer.removeChildren();
layer.draw();
layer.add(newRectWhatever);

and that works for me.

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.