var stage = acgraph.create('container');
var textObject = stage.text(70, 55, 'Click on this TEXT');
textObject.style({fontStyle: 'italic', fontSize: '18px', color: '#2196F3', hAlign: 'center'});
acgraph.events.listen(textObject, 'click', function (e) {
textObject.text('You clicked ' + counter + ' times. ' + 'Click again');
acgraph.events.listen(textObject, 'mousemove', function (e) {