Easel.js stage.clear() not working

skandocious picture skandocious · Oct 24, 2012 · Viewed 9.4k times · Source

Pretty simple concept but it doesn't seem to be working. Here is my code:

stage.clear();
stage.update();

Simple stuff -- nothing happens. The docs aren't helping.

Answer

skandocious picture skandocious · Dec 5, 2012

This ended up working for me:

stage.removeAllChildren();
stage.update();