<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
var stage = acgraph.create("container");
stage.width(120);
stage.height(25);
stage.rect(0, 0, 120, 25);
var simpleText = stage.text(0, 5, "Simple text");
// Sets direction.
simpleText.direction("rtl");
simpleText.width(stage.width());
simpleText.height(stage.height());