void stopAll()

Stops all actions currently being run by the controller and removes them.

myNode.actions.stopAll();

Source

void stopAll() {
  for (int i = _actions.length - 1; i >= 0; i--) {
    _stopAtIndex(i);
  }
}