AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
-
- Posts: 15
- Joined: Tue Nov 30, 2010 11:40 am
AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Hi,
Am evaluating the SDK.
Trying to convert/print a Word 2003 document with a hyper-link to another document.
How do you use the "AnalyzeUrl" option?
Trying with both on and off - the final PDF does not have the link. Have also tried with DetectFiles and CheckFileExists both on and off.
Therefore: what to set to have the link being created (never mind if the destination file exists)?
-zarko
Am evaluating the SDK.
Trying to convert/print a Word 2003 document with a hyper-link to another document.
How do you use the "AnalyzeUrl" option?
Trying with both on and off - the final PDF does not have the link. Have also tried with DetectFiles and CheckFileExists both on and off.
Therefore: what to set to have the link being created (never mind if the destination file exists)?
-zarko
- Attachments
-
- doc-link.zip
- zipped 2 doc files
- (22.11 KiB) Downloaded 1453 times
-
- Posts: 286
- Joined: Wed Dec 16, 2009 12:46 pm
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Hello,
Your document contains a hidden link "link" with the file path hidden. novaPDF does not detect hidden links. It detects only links with the visible paths. novaPDF is a printer driver and receives only the information that is printed also on paper. For more information on what links novaPDF detects see here:
http://www.novapdf.com/kb/create-active ... al-68.html
Thank you.
Your document contains a hidden link "link" with the file path hidden. novaPDF does not detect hidden links. It detects only links with the visible paths. novaPDF is a printer driver and receives only the information that is printed also on paper. For more information on what links novaPDF detects see here:
http://www.novapdf.com/kb/create-active ... al-68.html
Thank you.
Follow us to stay updated:
- Newsletter (get a discount for subscribing): https://www.novapdf.com/newsletter.html
- Facebook: https://www.facebook.com/novapdf
- Twitter: https://twitter.com/novapdf
- Linkedin: https://www.linkedin.com/showcase/novapdf
-
- Posts: 15
- Joined: Tue Nov 30, 2010 11:40 am
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Ok. How about the add-in for Word/Excel?Support wrote:Your document contains a hidden link "link" with the file path hidden. novaPDF does not detect hidden links. It detects only links with the visible paths.
The referred article mentiones that:
Furthermore, add-ins for Microsoft Word and Excel are currently available, which will allow the conversion of the "hidden" hyperlinks described above, but only from the applications they were created for.
Anything like this in the SDK?
-zarko
-
- Posts: 286
- Joined: Wed Dec 16, 2009 12:46 pm
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Hello,
Yes the Add-in contains the features however it is not available with the SDK version because on the other versions the documents are printed from the applications and not made by the user when he clicks the Add-in button.
Thank you.
Yes the Add-in contains the features however it is not available with the SDK version because on the other versions the documents are printed from the applications and not made by the user when he clicks the Add-in button.
Thank you.
Follow us to stay updated:
- Newsletter (get a discount for subscribing): https://www.novapdf.com/newsletter.html
- Facebook: https://www.facebook.com/novapdf
- Twitter: https://twitter.com/novapdf
- Linkedin: https://www.linkedin.com/showcase/novapdf
-
- Posts: 15
- Joined: Tue Nov 30, 2010 11:40 am
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Thanks for the clarification.
Any chance to have this (hidden links conversion) included in the SDK in future versions?
-zarko
Any chance to have this (hidden links conversion) included in the SDK in future versions?
-zarko
-
- Posts: 286
- Joined: Wed Dec 16, 2009 12:46 pm
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Hello,
We are not considering on implementing the Add-on with the SDK version for the moment.
Thank you.
We are not considering on implementing the Add-on with the SDK version for the moment.
Thank you.
Follow us to stay updated:
- Newsletter (get a discount for subscribing): https://www.novapdf.com/newsletter.html
- Facebook: https://www.facebook.com/novapdf
- Twitter: https://twitter.com/novapdf
- Linkedin: https://www.linkedin.com/showcase/novapdf
-
- Posts: 15
- Joined: Tue Nov 30, 2010 11:40 am
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Too bad. Your SDK is one of the most feature rich on the market. Converting DOC links to PDF links would be a great addition to the SDK.Support wrote:We are not considering on implementing the Add-on with the SDK version for the moment.
If any time in the future you would consider supporting this in the SDK, please also add Windows messages (like callbacks as you have them now) that would allow me to change the generated PDF link (location, zoom, etc).
Anyway, I have now tried with "visible" links using your "Word OLE Delphi" example, BUT the visible links (like "http://www.site.com") are still not converted to links in the resulting PDF.
I have used: AnalyzeUrl = TRUE, DetectFiles = FALSE and CheckFileExists = FALSE.
-zarko
-
- Posts: 286
- Joined: Wed Dec 16, 2009 12:46 pm
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Hello,
I tested the Analyze URL functionality and it is working correct here. Please modify one of our samples with the code you added for detecting the URLs and send it to us at [email protected] so we can investigate the problem here.
Thank you.
I tested the Analyze URL functionality and it is working correct here. Please modify one of our samples with the code you added for detecting the URLs and send it to us at [email protected] so we can investigate the problem here.
Thank you.
Follow us to stay updated:
- Newsletter (get a discount for subscribing): https://www.novapdf.com/newsletter.html
- Facebook: https://www.facebook.com/novapdf
- Twitter: https://twitter.com/novapdf
- Linkedin: https://www.linkedin.com/showcase/novapdf
-
- Posts: 15
- Joined: Tue Nov 30, 2010 11:40 am
Re: AnalyzeUrl/DetectFiles/CheckFileExists usage for Word 2003
Hi,
I've only added the following 3 lines to your "Word OLE Delphi" sample that comes with the SDK installation.
pNova.SetOptionLong2(NOVAPDF_URL_ANALIZE, LongInt(TRUE), PROFILE_NAME, PROFILE_IS_PUBLIC);
pNova.SetOptionLong2(NOVAPDF_URL_DETECT_FILES, LongInt(TRUE), PROFILE_NAME, PROFILE_IS_PUBLIC);
pNova.SetOptionLong2(NOVAPDF_URL_CHECK_FILE_EXISTS, LongInt(FALSE), PROFILE_NAME, PROFILE_IS_PUBLIC);
Will send to support. Thanks.
-zarko
I've only added the following 3 lines to your "Word OLE Delphi" sample that comes with the SDK installation.
pNova.SetOptionLong2(NOVAPDF_URL_ANALIZE, LongInt(TRUE), PROFILE_NAME, PROFILE_IS_PUBLIC);
pNova.SetOptionLong2(NOVAPDF_URL_DETECT_FILES, LongInt(TRUE), PROFILE_NAME, PROFILE_IS_PUBLIC);
pNova.SetOptionLong2(NOVAPDF_URL_CHECK_FILE_EXISTS, LongInt(FALSE), PROFILE_NAME, PROFILE_IS_PUBLIC);
Will send to support. Thanks.
-zarko