We are sorry that you have such issue. Please check that you select all these checkboxes in your GroupDocs account settings. Also in the URL of embed GroupDocs.Annotation you should add this GET parameter master=true in the main browser (whose movements will be translated). For example, such a URL can look like this one:
Also please check this screencast for how it works. In the screencast you see the same document opened for annotating in two browsers: the left browser is the main (master=true) and the right one is a collaborator. Please note that the collaborator will get “changes” with a delay.
Thank you for your request. We glad to hear that our GroupDocs.Anotation product are interesting for you.
If you need to set the another localization, then you should know that our Cloud Service doesn't supports other localizations apart from English.
In case that you need to customize localization we can offer you to check our stand-alone libraries for the GroupDocs.Annotation for .NET and for Java.
Please check our features for GroupDocs.Annotation for .NET here and documentations how to use it here .
Also check the features for the GroupDocs.Annotation for Java library here and documentations here .
Our GroupDocs.Annotation for Cloud plugin can be used for annotating the document by your users . It adds to the WordPress page the iframe, with an url to our Annotation Cloud service.
Also it uses our GroupDocs API for uploading the documents to our server , for generating the list of files from your account and for adding the collaborator to the document and sets the access rights for this collaborator.
If you need to know in which files this plugin is saving the variable with GUID, then you can check the treeviewer.php file and the grpdocs-dialog.php file.
Please note that the only administrator of your WP web site can change the document to annotate in the plugin
As we understand your use-case, you need that the users can chose your files and annotate them, for it you should try to use our stand-alone library or you should customize the plugin to allow all users select the document.
If you will have more questions please feel free to contact us.
Thank you for coming back with the details. In your case you should delete the unnecessary functionality in the grpdocs-dialog.php file and in the grpdocsannotation.php.
The groupdocs-dialog.php file responsibles for the popup window and you can hide or show the necessary info.
You can hide the functionality, which adds collaborators, so just need to delete this code:
Collaborator email:
CanView:
CanAnnotate:
CanDownload:
CanExport:
and this
if (!empty($_POST['can_view'])) {
$can_view = 'True';
} else {
$can_view = 'False';
};
if (!empty($_POST['can_annotate'])) {
$can_annotate = 'True';
} else {
$can_annotate = 'False';
};
if (!empty($_POST['can_download'])) {
$can_download = 'True';
} else {
$can_download = 'False';
};
if (!empty($_POST['can_export'])) {
$can_export = 'True';
} else {
$can_export = 'False';
};
also you should change the generator of shortcode for example:
echo"";
die;
The grpdocsannotation.php file parses the shortcode and puts the GUID in iframe and adds the collaborators to the document.
You should use in the function grpdocs_annotation_getdocument only this code :
I’ve a latency with realtime movements (scroll, annotations…), would it be possible to have to limit modifications and actions to the teacher ?
In order the student, can’t scroll, annotate…only see the movement made by the teacher ?
Maybe this could be reduce the latency…
This is the code i use…
THANKS
<iframe src='https://apps.groupdocs.com/document-annotation2/embed/6b19434d5ff28acb0510688a1e0c0afd9040f0303155b9605078b2deecaa11fe?master=true&referer=wordpress-annotation/1.3.13&signature=tKMYiBaXbNtNgg90xkoXaEA%2FaX4' frameborder='0' width='100%' height='100%'>If you can see this text, your browser does not support iframes. Please enable iframe support in your browser or use the latest version of any popular web browser such as Mozilla Firefox or Google Chrome. For more help, please check our documentation Wiki: <a href="https://docs.groupdocs.com/annotation/">https://docs.groupdocs.com/annotation/</a></iframe>
Thank you for your request. Sorry but at this moment our service can't provide this functionality . We appreciate our customers and we are reported our product team about your question. At the moment we are working over the full refactoring our products and we hope that after some investigations this issue we will be able to add this functionality in the new version our products.
At the moment you can only restrict the actions for annotating the documents for each student. For it you should set user's rights to view only for current document. .
From your previous posts we can assume that you simplified our plugin for your requirements and now for adding the access rights, you should add this code in the grpdocsannotation.php file to the function grpdocs_annotation_getdocument().
$reviewer->primary_email - this email address assigned for anonymous collaborator and if the students is not registered in the GroupDocs service , they is anonymous and you should add these access rights for them .
Thank you for your request. At the moment I can't give you more detailed information about our full refactoring. But I can say that the functionality that we have at the moment, will be improved and new features will be added.
The sample code that I gave you before, you can use only for adding the collaborators to a document. In order that the function returns an iframe with your document GUID, you should add this code after adding the collaborators :