Q:When in the annotation mode it would be nice if users could save the annotations without explicitly hitting the save button. Is this possible?A:There is an event called annotationChanged that is triggered when an annotation is added, deleted or modified. So you could have code similar to the following, that saves annotations after every change:annotManager.on('annotationChanged', function(e) {readerControl.saveAnnotations();});You would probably not want the "Annotations Saved" message to appear so you could modify the saveAnnotations function to not display the message.Alternatively you could use other criteria for when to automatically save, like on a blur event or something similar. Again you would only need to call the saveAnnotations function whenever you wanted to save.