CreateJS Tinkering 3
HTML
<canvas id="demoCanvas" width="400" height="300">alternate content</canvas>
JavaScript
//http://createjs.com/#!/EaselJS
var stage, holder;
function init() {
console.info("ello");
stage = new createjs.Stage("demoCanvas");
console.info("ello");
var myShape = new createjs.Shape();
console.info("ello");
myShape.graphics.beginFill('red').drawCircle(20, 50, 50);
stage.addChild(myShape);
stage.update();
}