Easel.js stage.clear() not working

canvas, easeljs, html, javascript

Solution

This ended up working for me:

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

Problem

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.

Original source