var stage = acgraph.create('container');
var largeText = stage.text(70, 55, 'Click on this TEXT');
largeText.style({fontStyle: 'italic', fontSize: '18px', color: '#2196F3', hAlign: 'center'});
var smallText = stage.text(70, 75, 'You have 3 clicks');
function customListener(e) {
smallText.text('You have ' + counter + ' clicks');
largeText.unlistenByKey(listenerKey);
largeText.style({color: '#F44336'});
smallText.text('You have no more clicks');
listenerKey = largeText.listen('click', customListener);