If you are only using angular and NOT using jquery you can do something like angular.element(document.getElementById('yourElement')).scope().save();
If you are using BOTH angular and jquery, you can do angular.element($('#yourElement')).scope().save();
assuming the the id attribute of your element is set like this <div id=yourElement></div>
VERY IMPORTANT But as noted here if the function you are calling from the console does anything such that you wish the changes to show up in the view then you have to pass them through $apply()
like this
var scope = angular.element($('#story')).scope();
scope.$apply(function(){
scope.showNextScene();
});