Search found 21 matches

by pete
Tue Mar 06, 2018 3:16 pm
Forum: DocuVieware
Topic: Docuvieware Lite - Select and Copy text
Replies: 1
Views: 4804

Docuvieware Lite - Select and Copy text

Hello folks,

I tested Docuvieware lite and it works great. However, I noticed that text selection is enabled, but cannot be disabled. Is this an intention? Thanks :)
by pete
Tue Jul 05, 2016 1:26 pm
Forum: DocuVieware
Topic: Edit annotations
Replies: 2
Views: 3622

Re: Edit annotations

Hi Cedric, I believe, what KevinLK means is that when he uses JS API to add annotation with specific parameters but once the annotation is added, user can click on edit button of that particular annotation and the annotation properties window will pop up where all properties can be changed. He would...
by pete
Fri Oct 09, 2015 12:07 pm
Forum: DocuVieware
Topic: PostCustomAction communicate back to client
Replies: 3
Views: 3775

Re: PostCustomAction communicate back to client

Hi Loic,

thank you! Everything is clear and works :)

Peter
by pete
Thu Oct 08, 2015 1:09 pm
Forum: DocuVieware
Topic: PostCustomAction communicate back to client
Replies: 3
Views: 3775

Re: PostCustomAction communicate back to client

So far, I have been able to solve it by creating a global static class in file "Global.aspx" public class viewerRefrence { public static DocuVieware reference { get; set; } } then on Page_load() I reference it: viewerRefrence.reference = DocuVieware1; After this, I am able to call controll...
by pete
Thu Oct 08, 2015 12:37 pm
Forum: DocuVieware
Topic: PostCustomAction communicate back to client
Replies: 3
Views: 3775

PostCustomAction communicate back to client

Hi, is there a way how PostCustomAction can communicate with a client? My example scenario is this: I would like to iterate through all annotations on the page, find a sticky note and return its text to a client. I have done everything so far, but I do not know how to send data back to client (via a...
by pete
Wed Oct 07, 2015 11:06 pm
Forum: DocuVieware
Topic: annotation as a picture
Replies: 3
Views: 3921

Re: annotation as a picture

Hi Loic, I managed to create an image annotation by using annotationManager.AddEmbeddedImageAnnot(Bitmap,Single,Single,Single,Single)...i have no idea how i missed that. I was wondering though, what is the best way to get top and left coordinates where user clicked so I can draw the annotation there...
by pete
Wed Oct 07, 2015 6:37 pm
Forum: DocuVieware
Topic: annotation as a picture
Replies: 3
Views: 3921

Re: annotation as a picture

Loic, could you please give me a pointer how I can do it (which methods to use? :) )? I already have a picture in the project but I am not sure how can I create a brand new annotation and add it as a picture.


Thank you.
by pete
Wed Oct 07, 2015 6:35 pm
Forum: DocuVieware
Topic: annotation sticky note shaddow
Replies: 3
Views: 3036

Re: annotation sticky note shaddow

Thank you Loic.
by pete
Wed Oct 07, 2015 12:17 pm
Forum: DocuVieware
Topic: annotation sticky note shaddow
Replies: 3
Views: 3036

Re: annotation sticky note shaddow

I forgot to mention, i have used this setting: AnnotationDropShadow = false;
by pete
Wed Oct 07, 2015 12:12 am
Forum: DocuVieware
Topic: annotation sticky note shaddow
Replies: 3
Views: 3036

annotation sticky note shaddow

Is there a possibility to remove a shadow from a sticky note? I would like to achieve 'flat" design and I cannot find this setting anywhere.

thankyou
by pete
Wed Oct 07, 2015 12:07 am
Forum: DocuVieware
Topic: annotation as a picture
Replies: 3
Views: 3921

annotation as a picture

Is it possible to set picture as an annotation? I would like to add for ex. a speech bubble svg icon as an annotation. I noticed it in the properties of annotation object + saw picture as an annotation in the "annotation demo".
by pete
Thu Oct 01, 2015 6:03 pm
Forum: DocuVieware
Topic: Hyperlinks in DocuVieware
Replies: 9
Views: 8720

Re: Hyperlinks in DocuVieware

Hello Loic, thank you, but I meant the page 107 in the annotation demo. On the last page, there are two URLs that redirect you to other website. In PDF viewer when I download "Little Prince" PDF to desktop in OSX, I can click on those URLs on page 107 and I am redirected. In annotation dem...
by pete
Fri Sep 25, 2015 5:11 pm
Forum: DocuVieware
Topic: Hyperlinks in DocuVieware
Replies: 9
Views: 8720

Hyperlinks in DocuVieware

Hi,

is there possibility to enable user to click on hyperlinks in the document? I do not want to allow user to select the text, but to be able to click on the link so he will be redirected to it. (for e.g.: last page here: http://www.docuvieware-demo.com/annotations_demo.aspx )

Thank you.
by pete
Thu Sep 17, 2015 3:46 pm
Forum: DocuVieware
Topic: annotationManager.DeleteAnnotation() does not work
Replies: 3
Views: 6643

Re: annotationManager.DeleteAnnotation() does not work

After communication with GdPicture team, download the lastest version and use this code: for (int i = annotationCount -1; i >=0; --) { annotationManager.DeleteAnnotation(i); } instead of the original: for (int i = 0; i < annotationCount; i++) { annotationManager.DeleteAnnotation(i); }
by pete
Mon Sep 14, 2015 4:22 pm
Forum: DocuVieware
Topic: annotationManager.DeleteAnnotation() does not work
Replies: 3
Views: 6643

annotationManager.DeleteAnnotation() does not work

Hi, I have come across very strange behavior. I have set up my DocuVieware 11 in ASP.MVC 5, Visual Studio 2013. I have created custom action "TestRemoveAnnotationsFromPage" - which is basically a code example from tutorials, but the only thing it does is to iterate through annotations on a...