var stage = acgraph.create('container');
var blueText = stage.text(70, 55, 'Click on this TEXT');
blueText.style({fontStyle: 'italic', fontSize: '18px', color: '#2196F3', hAlign: 'center'});
acgraph.events.listenOnce(blueText, 'click', function (e) {
blueText.text('You can\'t click here anymore');