Search found 93 matches

by toolwiz
Thu Feb 07, 2008 6:53 pm
Forum: ScaleRichView
Topic: more RVAction Hyperlink questions
Replies: 11
Views: 36350

Yes, the hyperlink works; that's the OnJump handler. The OnItemHint handler is never triggered. I'd like to display the URL behind the link in the status bar.
by toolwiz
Thu Feb 07, 2008 6:51 pm
Forum: ScaleRichView
Topic: <CTRL-Z> falls off end of list and generates errors
Replies: 5
Views: 21034

What's the schedule for publishing these updates?
by toolwiz
Thu Feb 07, 2008 7:57 am
Forum: ScaleRichView
Topic: <CTRL-Z> falls off end of list and generates errors
Replies: 5
Views: 21034

<CTRL-Z> falls off end of list and generates errors

Hitting <CTRL-Z> for UnDo generates a list bounds error sometimes. (Attempt to read past end of list or something like that.)

-David
by toolwiz
Thu Feb 07, 2008 7:31 am
Forum: ScaleRichView
Topic: more RVAction Hyperlink questions
Replies: 11
Views: 36350

If is set a handler for OnItemHint in SRV, it never gets triggered.

-David
by toolwiz
Tue Feb 05, 2008 10:50 pm
Forum: ScaleRichView
Topic: srve + embedded hyperlinks not rendering to PDF
Replies: 3
Views: 17732

Well, I got this solved. I added a couple of classes to the DLines unit, modified the interfaces on a bunch of Draw/Paint methods, and made a few mods in CRVFData and SclRView. Now you can pass a TRVTaggedDLIItemsList instance at the end of the argument list to: TSRichViewEdit.DrawPage -> TSRichView...
by toolwiz
Sun Feb 03, 2008 7:16 pm
Forum: ScaleRichView
Topic: more RVAction Hyperlink questions
Replies: 11
Views: 36350

This dialog is included in RichViewActions (HypRVFrm.pas). You can use your own dialog instead of it, use rvActionInsertHyperlink.OnHyperlinkForm event. You can use OnItemHint event to display hints when mouse is above some item. CTRL key is used by default. Thanks. BTW, CTRL key is NOT used by def...
by toolwiz
Sun Feb 03, 2008 7:09 pm
Forum: ScaleRichView
Topic: srve + embedded hyperlinks not rendering to PDF
Replies: 3
Views: 17732

Well, I need to figure out how to do it now. Any suggestions? I purchased licenses for SRV and llPDFlib specifically to make an app that will let me do this, among other things. It was never clear that it was not possible until after I got the source and started digging around in it. Generating embe...
by toolwiz
Sun Feb 03, 2008 1:15 am
Forum: ScaleRichView
Topic: srve + embedded hyperlinks not rendering to PDF
Replies: 3
Views: 17732

srve + embedded hyperlinks not rendering to PDF

From the general lack of replies to my questions about hyperlinks here, I get the feeling that nobody else is working with them. If you have a document open in SRVE that contains embedded hyperlinks, it does not appear that it will create them when rendering to PDF (I'm using llionPDF). Since render...
by toolwiz
Sat Feb 02, 2008 10:02 am
Forum: ScaleRichView
Topic: more RVAction Hyperlink questions
Replies: 11
Views: 36350

more RVAction Hyperlink questions

There's an RVAction named rvActionInsertHyperlink1 that opens a dialog box when it's triggered (toolbar button and Insert | Hyperlink menu item). Where is that dialog box found? There's a method RichViewEdit1_Jump(Sender: TObject; id: Integer) that's invoked if you click on a piece of text with a hy...
by toolwiz
Tue Jan 29, 2008 8:22 pm
Forum: ScaleRichView
Topic: importing documents with embedded hyperlinks
Replies: 11
Views: 37185

I need to know what to do about this. The majority of our users will be importing Word (.doc) files. I can tell them to re-insert embedded links, and I can add a pass that converts explicit URLs to hyperlink style. Or I can tell them to save their documents as RTF files first, and then import that i...
by toolwiz
Sun Jan 27, 2008 9:57 pm
Forum: ScaleRichView
Topic: importing documents with embedded hyperlinks
Replies: 11
Views: 37185

Well, I can reproduce the problem with importing DOC files using office text converters. Unfortunately, it cannot be fixed, because the DOC file import converter creates RTF without hyperlinks. This means that a separate pass needs to be made to convert all obvious URLs and email addresses to hyper...
by toolwiz
Sat Jan 26, 2008 8:51 pm
Forum: ScaleRichView
Topic: importing documents with embedded hyperlinks
Replies: 11
Views: 37185

Maybe you can point me to just ONE Word Document that this works with? I've tried about a dozen, written by many different people with different versions of Word, including some I just created from scratch, and I get the exact same results each time. But I'll be happy to send you a simple test page ...
by toolwiz
Sat Jan 26, 2008 10:09 am
Forum: ScaleRichView
Topic: importing documents with embedded hyperlinks
Replies: 11
Views: 37185

1) Please send me example of this Word doc to test. 2) This action must be able add, modify and delete hyperlinks. I cannot reproduce the problem. Please give me step by step instructions how to do it. It is very simple. I created a new Word document and just typed in some text that included some h...
by toolwiz
Fri Jan 25, 2008 7:41 am
Forum: ScaleRichView
Topic: importing documents with embedded hyperlinks
Replies: 11
Views: 37185

importing documents with embedded hyperlinks

Again, I'm not sure if this is an issue with the RichView, RVActions, or SRV. In the Actions Demo, if I do an Insert File ... and load a Word 2002 document that contains normal URLs as well as anchor text with embedded hyperlinks (ie, where the anchor text is NOT a URL, but just some text), they bot...
by toolwiz
Fri Jan 25, 2008 3:00 am
Forum: ScaleRichView
Topic: interpreting styles in the program
Replies: 2
Views: 14132

interpreting styles in the program

Usually when I've worked with RichViews, I have a Style component on the form. I can see what's there and know how to find things in it. Using SRV, if the user highlights a selection, I can call GetSelectionBounds and identify the item that's been selected. In most cases, in my current app, this'll ...