Re: PDF widget print quality

2024-02-21 Thread Paul Dupuis via use-livecode
resolution but normal size but I don't recall how successful any of those efforts were. There is probably an ancient enhancement  request in the Livecode Quality Center to support higher-resolution printing. On 2/20/2024 8:56 PM, David Epstein via use-livecode wrote: I want to use the PDF widget

PDF widget print quality

2024-02-20 Thread David Epstein via use-livecode
I want to use the PDF widget to print a PDF with additional markings added in LiveCode. Showing a simple PDF tax form in Widget 1 at 100% scale, I tried this script: on p1 get the pageRect of widget 1 open printing with dialog print card from (item 1 to 2 of it) to (item 3 to 4

Re: PDF Widget and JavaScript

2023-12-29 Thread Bob Sneidar via use-livecode
cript engine is not implemented in the PDF widget. > > Ralph DiMola > IT Director > Evergreen Information Services > rdim...@evergreeninfo.net > > -Original Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf > Of Bob Sn

RE: PDF Widget and JavaScript

2023-12-29 Thread Ralph DiMola via use-livecode
The last I knew the JavaScript engine is not implemented in the PDF widget. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Bob Sneidar via use-livecode

PDF Widget and Javascript

2023-12-28 Thread Bob Sneidar via use-livecode
Hi all. This is a long shot, but is there any kind of PDF gadget in Livecode that can run javascript? I am specifically wanting to generate an FDF file from fillable forms. The javascript is fairly straightforward: This.ExportAsFDF(true, false, null) This will work in a javascript enabled

Re: PDF Widget No Filled Forms

2023-09-28 Thread Bob Sneidar via use-livecode
Thanks Matthias I’ll look at that. Bob S > On Sep 28, 2023, at 6:38 AM, matthias rebbe via use-livecode > wrote: > > What i forgot to mention. For macOS 10.11 and above please use the following > link > https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk_server-

Re: PDF Widget No Filled Forms

2023-09-28 Thread Bob Sneidar via use-livecode
f a project to get your forms rendering then. If > it’s something you need soon and you have a budget then contact > supp...@livecode.com <mailto:supp...@livecode.com>. Otherwise you can create > a bug report and attach the PDF. > > FYI there is no support for form interactiv

Re: PDF Widget No Filled Forms

2023-09-28 Thread matthias rebbe via use-livecode
What i forgot to mention. For macOS 10.11 and above please use the following link https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk_server-2.02-mac_osx-10.11-setup.pkg > Am 28.09.2023 um 13:09 schrieb matthias rebbe via use-livecode > : > > Bob, > > as a workaroun

Re: PDF Widget No Filled Forms

2023-09-28 Thread matthias rebbe via use-livecode
Bob, as a workaround you could create a temporary pdf file that is then displayed in the pdf widget. You'll need the free tool PDFTK server with its fill-form option for this. PDFTK server runs on macOS, Windows and some Linux versions. PDFTK server is free https://www.pdflabs.com If you

Re: PDF Widget No Filled Forms

2023-09-27 Thread Monte Goulding via use-livecode
Hi Bob Hmm… OK, it could be a bit of a project to get your forms rendering then. If it’s something you need soon and you have a budget then contact supp...@livecode.com <mailto:supp...@livecode.com>. Otherwise you can create a bug report and attach the PDF. FYI there is no support fo

Re: PDF Widget No Filled Forms

2023-09-27 Thread Bob Sneidar via use-livecode
gt; Monte > >> On 28 Sep 2023, at 1:27 am, Bob Sneidar via use-livecode >> wrote: >> >> Hi all. >> >> I have filled forms, and I am just now wanting to display those FILLED forms >> in a PDF widget. Only problem is, the form data is not being displa

Re: PDF Widget No Filled Forms

2023-09-27 Thread Monte Goulding via use-livecode
Hi Bob Try setting the `drawAnnotations` to true and see if the form data renders Cheers Monte > On 28 Sep 2023, at 1:27 am, Bob Sneidar via use-livecode > wrote: > > Hi all. > > I have filled forms, and I am just now wanting to display those FILLED forms > in a PDF

PDF Widget No Filled Forms

2023-09-27 Thread Bob Sneidar via use-livecode
Hi all. I have filled forms, and I am just now wanting to display those FILLED forms in a PDF widget. Only problem is, the form data is not being displayed. Is that the current state of affairs? If so, then boo! Bob S ___ use-livecode mailing

Re: Merging PDF pages

2023-08-28 Thread Chris Heidecker via use-livecode
Hi, While applescript is still around, you could use this script. Works pretty well. https://www.macscripter.net/t/applescript-objective-c-handler-to-merge-pdf-files/72534 Regards, Chis Heidecker use scripting additions use framework "Foundation" use framework "Quartz"

Re: Merging PDF pages

2023-08-26 Thread doc hawk via use-livecode
richard reasoned be aware that you will lose one the most valuable things about a PDF document: the embedded text layer. Oh, no, there’s something more valuable, which you also lose: anything over 72 dpi! I played with a pdf library for python for a bit, as well as raw pdf, without much luck

Re: Merging PDF pages

2023-08-25 Thread Eller, Roger via use-livecode
: Merging PDF pages CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. Just noticed that my steps are missing something. So here's version 2 of it. 1. download https://nam10

Re: Merging PDF pages

2023-08-25 Thread matthias rebbe via use-livecode
Just noticed that my steps are missing something. So here's version 2 of it. 1. download https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk_server-2.02-mac_osx-10.11-setup.pkg 2. to extract the pkg run the following in Terminal pkgutil --expand If the source path to the pkg contains

Re: Merging PDF pages

2023-08-25 Thread matthias rebbe via use-livecode
the d/l link for pdftk Server from the pdfLabs website. That version will not work on macOS11 and up. Instead download this version of PDFTK Server. Sid Steward created a new version but did not update the d/l link https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk_server-2.02-mac_osx

Re: Merging PDF pages

2023-08-25 Thread panagiotis m via use-livecode
Hello all, There is a built-in utility on MacOS for merging PDFs. You can call it from "shell", as Paul suggested. This seems to work - tested on MacOS Mojave. It merges "test1.pdf" and "test2.pdf" into "merged.pdf" on Desktop. Just check that the path

Re: Merging PDF pages

2023-08-25 Thread Paul Dupuis via use-livecode
The short answer is NO. There is nothing built into Livecode to take a set fo existing PDF files and append them to create a readable PDF that is them all stitched together. Neither the XPDF external nor the PDF widget will do this. You best option is to use some 3rd party command line

Re: Merging PDF pages

2023-08-25 Thread Craig Newman via use-livecode
Richmond. Did I mention this was a bit clunky? Craig > On Aug 25, 2023, at 9:39 AM, Craig Newman via use-livecode > wrote: > > Hmmm. > > Rereading, did you want to be able to collect existing pdf documents, read > them, and then output a single new PDF? If so, I

Re: Merging PDF pages

2023-08-25 Thread Richmond Mathewson via use-livecode
Humph . . . importing documents at images and then knitting them together . . . be aware that you will lose one the most valuable things about a PDF document: the embedded text layer. Richmond. On 25.08.23 16:39, Craig Newman via use-livecode wrote: Hmmm. Rereading, did you want to be able

Re: Merging PDF pages

2023-08-25 Thread Craig Newman via use-livecode
Hmmm. Rereading, did you want to be able to collect existing pdf documents, read them, and then output a single new PDF? If so, I guess you can import those documents as images on successive cards, and do what I posted earlier. Seems clunky, but then you are asking LC to do something clunky

Re: Merging PDF pages

2023-08-25 Thread Craig Newman via use-livecode
Hi. Sure. Try this in a button on card 1 of a new stack with, say, three cards: on mouseUp get the desktop folder open printing to pdf it & "/" & “yourNamehere" & ".pdf" repeat with x = 1 to 3 print card x end repeat close printing end mouseUp A

Merging PDF pages

2023-08-25 Thread Eller, Roger via use-livecode
It's been a while since I've posted a question here. Is it possible to use livecode script to merge multiple 1-page PDFs into a multipage PDF without using Acrobat or other 3rd party software? Thanks. ~Roger ___ use-livecode mailing list use

Re: PDF widget and XPDFviewer

2023-06-17 Thread Paul Dupuis via use-livecode
I think the answer is complex. They are not the same thing, but eventually, the widget will replace the external. The current issue is that the widget is lacking some features the external has, so, if, (like us) you PDF work is based on the external, migrating to the widget is not possible

PDF widget and XPDFviewer

2023-06-17 Thread David Epstein via use-livecode
What is the relation between the widget “PDF” and the external “XPDFViewer” (both in Pro Features)? The latter offers more direct access to a few properties (e.g., totalCharacterCount), while the widget syntax is a little simpler. It does not appear that a PDF widget is a PDF Viewer, at least

PDF widget and "pinch zoom"

2023-06-17 Thread Klaus major-k via use-livecode
Hi all, I just found out that the PDF widget supports "pinch zoom" (correct term?) on Android. KIND OF! It is VERY VERY jerky, but somehow works, yet unpredictable, takes some seconds to finish. Is this an undocumented feature? If yes, any chance that this can/will be optimized so

Re: Browser widget doesn't display PDF

2022-11-29 Thread matthias rebbe via use-livecode
om/show_bug.cgi?id=18378 Thanks, i was not aware of that report. Btw. you are commenting in that report, that you could replicate the problem with a 316 page PDF, but not with a 5 page pdf. In my case the PDF has only 1 page. > https://quality.livecode.com/show_bug.cgi?id=22534 > I knew

Re: Browser widget doesn't display PDF

2022-11-29 Thread panagiotis m via use-livecode
Hello Matthias, See: https://quality.livecode.com/show_bug.cgi?id=18378 https://quality.livecode.com/show_bug.cgi?id=22534 I suggest using a PDF widget instead of a browser widget to display the pdf files, until this bug is fixed. Kind regards, Panos -- On Tue, 29 Nov 2022 at 18:59, matthias

Browser widget doesn't display PDF

2022-11-29 Thread matthias rebbe via use-livecode
Hello, i am currently having problems that a browser widget doesn't display a pdf, regardless if remote or local. I just see a white blank page. Sometime an error message comes up telling me that "PDFViewer could not find a compatible version of Adobe Acrobat or Adobe Reader for displ

Re: Printing (Preview in LC/screen vs Printer/PDF)

2022-10-23 Thread Paul Dupuis via use-livecode
A correction. The images are reduced to 1/4 size ONLY when printing to PDF on Windows (printing to paper results in the image at expected size) This could be specific to Windows and the PDF "printer" (Foxit) being used. More testing is required. Premature posting ;-) On 10/23/20

Printing (Preview in LC/screen vs Printer/PDF)

2022-10-23 Thread Paul Dupuis via use-livecode
I size and image to fit ON THE SCREEN within the "PrintArea" and then I print it (to a Printer OR to PDF, the image appear are roughly 1/4 size. I assume this is the 72/75 dpi screen resolutions being put on a 300 dpi PDF or printer? Is there some easy Livecode trick to just get images to print

Re: PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
Mark, Genius! I can't thank you enough... That worked! Make sure that the field that holds the text has a valid font name and isn't inheriting a system-level font. That REALLY ought to be documented in the PDF routines in LC. As long as I have your ear... Whenever I call this, I get

Re: PDF Printing

2022-10-04 Thread Mark Waddingham via use-livecode
On 2022-10-04 16:20, Dan Friedman via use-livecode wrote: Here are examples of the printouts (the PDFs): Print to PDF - https://www.clearvisiontech.com/WORKING/PrintToPDF1.pdf Print to Printer - https://www.clearvisiontech.com/WORKING/PrintToPDF2.pdf Any thoughts or ideas? Someone had

Re: PDF Printing

2022-10-04 Thread Marty Knapp via use-livecode
think it would be wacked > for all methods. No? > > I could be wrong (I'm wrong all the time!) but, I think it's something in > LC's internal PDF handling, or some property I need to set or reset. > > -Dan > > > On 10/4/22, 9:51 AM, "use-livecode on b

RE: PDF Printing

2022-10-04 Thread Ralph DiMola via use-livecode
To: How to use LiveCode Cc: Ralph DiMola Subject: Re: PDF Printing Thank you for your thoughts, but do you really think a font cache is the issue? I have two computers in my office having this issue, and about a dozen Macs at my client's location -- that we know of so far! If it were a font issue

Re: PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
, and another wouldn't? If the font table was messed up, I would think it would be wacked for all methods. No? I could be wrong (I'm wrong all the time!) but, I think it's something in LC's internal PDF handling, or some property I need to set or reset. -Dan On 10/4/22, 9:51 AM, "use-liv

RE: PDF Printing

2022-10-04 Thread Ralph DiMola via use-livecode
] On Behalf Of Dan Friedman via use-livecode Sent: Tuesday, October 04, 2022 11:21 AM To: How to use LiveCode Cc: Dan Friedman Subject: PDF Printing I am getting different results using "open printing to pdf" vs standard printing to a printer. I have a card with a single field on it

Re: PDF Printing

2022-10-04 Thread Marty Knapp via use-livecode
. It’s little harder to fix on Windows - if that is the case you might Google that. Worth a try anyway. Marty > On Oct 4, 2022, at 8:20 AM, Dan Friedman via use-livecode > wrote: > > I am getting different results using "open printing to pdf" vs standard > printi

PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
I am getting different results using "open printing to pdf" vs standard printing to a printer. I have a card with a single field on it with some formatted text in it. If I print the card to a printer using "open printing with dialog" it all looks perfect (even if I choo

Re: [semi-OT] PDF on the fly

2022-09-15 Thread matthias rebbe via use-livecode
That is interesting. I tried here with content-length on on-rev and it works here with Version 15.6 (17613.3.9.1.5) of Safari. At least you've found a solution... > Am 15.09.2022 um 11:36 schrieb jbv via use-livecode > : > > I am using Safari 15.6 (15613.3.9.1.7, 15613) > > But I finally

Re: [semi-OT] PDF on the fly

2022-09-15 Thread jbv via use-livecode
I am using Safari 15.6 (15613.3.9.1.7, 15613) But I finally found the origin of the problem : put header "Content-Length: " & number of chars of myPDF After removing that line from the header, files download and display fine in Safari, as in other browsers. So far I have no rational

Re: [semi-OT] PDF on the fly

2022-09-14 Thread matthias rebbe via use-livecode
I just tested on quartz.on-rev.com with LC Server 9.6.0. I've created a textfile with a size of 1mb. tested with this script and it worked. I even tested with put header instead of put new header. Which version of Safari do you have? > Am 14.09.2022 um 22:44

Re: [semi-OT] PDF on the fly

2022-09-14 Thread jbv via use-livecode
Hi guys, Thank you for your answers. No matter what I try, the problem remains the same on Safari. My LC script runs on my on-rev account, and it uses LC 9.6. Could this really be the problem ? Best, jbv ___ use-livecode mailing list

Re: [semi-OT] PDF on the fly

2022-09-14 Thread matthias rebbe via use-livecode
tFileName > put URL("file:" & tFileContent) > > The only difference i see is, that i haveput new header instead of put > header > > > > > > >> Am 14.09.2022 um 20:58 schrieb jbv via use-livecode >> : >> >> Hi lis

Re: [semi-OT] PDF on the fly

2022-09-14 Thread matthias rebbe via use-livecode
use-livecode > : > > Hi list, > > I have a web site on which end users can select several options, > and then click a button "show PDF", and a pdf containing various > contents from a remote DB with a sophisticated layout is built > server side in a seco

RE: [semi-OT] PDF on the fly

2022-09-14 Thread Ralph DiMola via use-livecode
2:58 PM To: How to use LiveCode Cc: j...@souslelogo.com Subject: [semi-OT] PDF on the fly Hi list, I have a web site on which end users can select several options, and then click a button "show PDF", and a pdf containing various contents from a remote DB with a sophisticated layout is bu

[semi-OT] PDF on the fly

2022-09-14 Thread jbv via use-livecode
Hi list, I have a web site on which end users can select several options, and then click a button "show PDF", and a pdf containing various contents from a remote DB with a sophisticated layout is built server side in a second and automatically downloaded. The link of the button is

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-19 Thread panagiotis m via use-livecode
Hello all, We will bring back XPDF, since it has some functionality that the PDF widget does not have, at least as of now :) https://quality.livecode.com/show_bug.cgi?id=23578 Kind regards, Panos -- On Thu, 19 May 2022 at 10:56, Klaus major-k via use-livecode < use-livecode@lists.runrev.

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-19 Thread Klaus major-k via use-livecode
18.05.2022 um 22:44 schrieb Paul Dupuis via use-livecode >>>> : >>>> It got removed from LC 9.6.6 and 9.6.7 and 10.0.0 dp 1 to 3. They >>>> (Livecode Support) said it would be back in LC 10.0.0 dp 4 and presumable >>>> and further releases in the 9.6.

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-19 Thread Klaus major-k via use-livecode
It got removed from LC 9.6.6 and 9.6.7 and 10.0.0 dp 1 to 3. They (Livecode >>> Support) said it would be back in LC 10.0.0 dp 4 and presumable and further >>> releases in the 9.6.x series. >> I thought this has been replaced with the PDF widget, which is only >

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Paul Dupuis via use-livecode
releases in the 9.6.x series. I thought this has been replaced with the PDF widget, which is only available in the "Pro Pack" addon? I can't see how Livecode can replace the XPDF external with the PDF Widget UNTIL the PDF Widget provided all the functions the External does (and it does

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Matthias Rebbe via use-livecode
Ah thanks, Paul. I copied already the xpdf from an older LC version to LC 10DP3. But good to know that it will be back. XPDF allows me to get the imagedata of the currently rendered page and 'export' that as image. Matthias > Am 18.05.2022 um 22:44 schrieb Paul Dupuis via use-livecode > : >

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Klaus major-k via use-livecode
ught this has been replaced with the PDF widget, which is only available in the "Pro Pack" addon? > You can copy it from the 9.6.5 of earlier to the ccorresponding folder for LC > 9.6.7. For example, on Windows it is C:\Program Files\RunRev\LiveCode > 9.6.5\Ext\XPDF-1.0.45 >

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Paul Dupuis via use-livecode
It got removed from LC 9.6.6 and 9.6.7 and 10.0.0 dp 1 to 3. They (Livecode Support) said it would be back in LC 10.0.0 dp 4 and presumable and further releases in the 9.6.x series. You can copy it from the 9.6.5 of earlier to the ccorresponding folder for LC 9.6.7. For example, on Windows it

Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Matthias Rebbe via use-livecode
Hi all. I just wanted to update an older stack in LC10 that uses the xpdf external, but it seems that XPDF is not available anymore in LC. Further testing shows that at least also LC 9.6 and up does not have XPDF included anymore? Am i am missing something? I do not remember that XPDF was

Re: Print to pdf fails on Windows with multiple pages

2022-03-24 Thread panagiotis m via use-livecode
here also with 10DP2. > And have attached a sample stack so others could also test. > > But i could not attach the pdf. I am always getting this error here: > > "It looks like you didn't come from the right page (you have no valid > token for the create_attachment action while

Re: Print to pdf fails on Windows with multiple pages

2022-03-24 Thread matthias rebbe via use-livecode
I can replicate this here also with 10DP2. And have attached a sample stack so others could also test. But i could not attach the pdf. I am always getting this error here: "It looks like you didn't come from the right page (you have no valid token for the create_attachment action

Re: Print to pdf fails on Windows with multiple pages

2022-03-24 Thread Andreas Bergendal via use-livecode
to create the full pdf, but after that it seems Windows calls it a day and refuses to repeat the effort. Since the stack/data is indeed confidential, I’ll make it available to you through other channels. Best, Andreas Panos wrote: > This sounds like this bug https://quality.livecode.

Re: Print to pdf fails on Windows with multiple pages

2022-03-24 Thread panagiotis m via use-livecode
Hello Andreas, This sounds like this bug https://quality.livecode.com/show_bug.cgi?id=23088, which should be fixed in LC 9.6.6 RC-1 and newer. If this is not the case for you, could you attach a sample stack and the pdf to this report and reopen it? Or send it to me directly

Print to pdf fails on Windows with multiple pages

2022-03-24 Thread Andreas Bergendal via use-livecode
Hi all, TL;DR: App/IDE crashes/fails when printing 30+ pages to single pdf, using Windows 10. Works fine on Mac. Windows memory issues? Long version: I have a stack/app where a crucial feature is printing to pdf. Om Mac (LC 9.6.6 or 9.6.7 rc1) this works flawlessly with 156 posts, resulting

Re: Requirements for display PDF in a browser on Windows?

2022-03-09 Thread Klaus major-k via use-livecode
Hi Tom, > Am 09.03.2022 um 20:20 schrieb Tom Glod via use-livecode > : > > (y) That I do not know unfortunately. Can't test I don't have windows 7 > anywhere. OK, so I guess it will work on Win 10, if that is what you are running, right? Someone else knows if this works on Win >= 7? Don't be

Re: Requirements for display PDF in a browser on Windows?

2022-03-09 Thread Tom Glod via use-livecode
(y) That I do not know unfortunately. Can't test I don't have windows 7 anywhere. On Wed, Mar 9, 2022 at 1:45 PM Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Tom, > > > Am 09.03.2022 um 19:40 schrieb Tom Glod via use-livecode < > use-livecode@lists.runrev.com>: > >

Re: Requirements for display PDF in a browser on Windows?

2022-03-09 Thread Klaus major-k via use-livecode
Hi Tom, > Am 09.03.2022 um 19:40 schrieb Tom Glod via use-livecode > : > > i use the widget. Yes it can. this is very good news, thank you! :-) And what Windows version is neccessary for this to work? All versions >= 7? > On Wed, Mar 9, 2022 at 1:10 PM Klaus major-k via use-livecode < >

Re: Requirements for display PDF in a browser on Windows?

2022-03-09 Thread Tom Glod via use-livecode
i use the widget. Yes it can. On Wed, Mar 9, 2022 at 1:10 PM Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Jaques, > > > Am 09.03.2022 um 19:01 schrieb J. Landman Gay via use-livecode < > use-livecode@lists.runrev.com>: > > > > I believe it's the Chromium engine. >

Re: Requirements for display PDF in a browser on Windows?

2022-03-09 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 09.03.2022 um 19:01 schrieb J. Landman Gay via use-livecode > : > > I believe it's the Chromium engine. thanks! But can it open PDFs out of the box? > -- > Jacqueline Landman Gay | jac...@hyperactivesw.com > HyperActive Software | http://www.hyperactivesw.com > On March 9,

Re: Requirements for display PDF in a browser on Windows?

2022-03-09 Thread J. Landman Gay via use-livecode
I believe it's the Chromium engine. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On March 9, 2022 4:47:26 AM Klaus major-k via use-livecode wrote: Is "Chrome" the web engine that LC is unsing in the "browser widget" on Windows?

Re: Requirements for display PDF in a browser on Windows?

2022-03-09 Thread Klaus major-k via use-livecode
Hi Tom, > Am 08.03.2022 um 23:55 schrieb Tom Glod via use-livecode > : > > I have definitely opened PDF in the browser in the past and it opened > the default "chrome html 5" pdf reader. > everything seems to have worked. > And I don't see why it would

Re: Requirements for display PDF in a browser on Windows?

2022-03-08 Thread Tom Glod via use-livecode
I have definitely opened PDF in the browser in the past and it opened the default "chrome html 5" pdf reader. everything seems to have worked. And I don't see why it would no longer work now. you can google "browser test" from within the browser and it will tell

Re: Requirements for display PDF in a browser on Windows?

2022-03-08 Thread Klaus major-k via use-livecode
Hi, > Am 08.03.2022 um 19:54 schrieb Klaus major-k via use-livecode > : > > Hi all, > > the subject says it all, of course in regard of LC. > > Is the web-plugin of Acrobat reader still neccessary? > Or do current Windows Browser display PDF files out of the box?

Requirements for display PDF in a browser on Windows?

2022-03-08 Thread Klaus major-k via use-livecode
Hi all, the subject says it all, of course in regard of LC. Is the web-plugin of Acrobat reader still neccessary? Or do current Windows Browser display PDF files out of the box? Thanks for any hint! Best Klaus -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de

Re: PDF Viewer widget: expected experience from set the currentDestination?

2022-01-05 Thread Keith Clarke via use-livecode
I’m still struggling to find the Rosetta Stone for the PDF widget that connects the page & rect of any currentDestination with its link text on that page of the PDF, to enable recreation with scripting of the links that one sees out-of-the-box in PDF viewers such as Preview or Adobe. I

Re: PDF Viewer widget: expected experience from set the currentDestination?

2021-12-23 Thread Keith Clarke via use-livecode
e for that here > https://quality.livecode.com/show_bug.cgi?id=23493 > > Here’s a simple example of using the currentDestination though: > > local tDest > put "goto" into tDest["type”] > put "Fit" into tDest["mode”] > put 3 into tDest["page”] > set the c

Re: PDF Viewer widget: expected experience from set the currentDestination?

2021-12-22 Thread Monte Goulding via use-livecode
example of using the currentDestination though: local tDest put "goto" into tDest["type”] put "Fit" into tDest["mode”] put 3 into tDest["page”] set the currentDestination of widget “pdf" to tDest Cheers Monte > On 23 Dec 2021, at 4:24 am, Keith Clark

PDF Viewer widget: expected experience from set the currentDestination?

2021-12-22 Thread Keith Clarke via use-livecode
Hi folks, Please can anyone share the response/experience to be expected in the PDF Viewer widget after a successful call to set the currentDestination? I have the widget successfully changing currentPage when set but I was hoping to see some visual feedback with on a change

Re: How to extract whole text from a PDF file with the PDF

2021-12-14 Thread Paul McClernan via use-livecode
tax > for messages, commands, and functions of the XPDF external (with Monte > correcting me when I had a really stupid syntax specified) > > > > > The newer (> 9.6.3) PDF Widget is based on PDFium which is an offshoot > > project that spawned from Google’s Chromium

Re: How to extract whole text from a PDF file with the PDF

2021-12-14 Thread Paul Dupuis via use-livecode
recting me when I had a really stupid syntax specified) The newer (> 9.6.3) PDF Widget is based on PDFium which is an offshoot project that spawned from Google’s Chromium project. I’m not sure about the licensing involved with that. If you’re running macOS I released a (semi-complete) libr

Re: How to extract whole text from a PDF file with the PDF

2021-12-14 Thread Paul McClernan via use-livecode
I was fairly certain that XPDF external was/is based on this XPDF: https://en.m.wikipedia.org/wiki/Xpdf Which has both GPL and Proprietary Licensing options available. The newer (> 9.6.3) PDF Widget is based on PDFium which is an offshoot project that spawned from Google’s Chromium project.

RE: How to extract whole text from a PDF file with the PDF widget?

2021-12-13 Thread Ralph DiMola via use-livecode
o the NumberOfPages of control "PDF1") Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Paul Dupuis via use-livecode Sent: Sunday, December 12, 20

Re: How to extract whole text from a PDF file with the PDF

2021-12-13 Thread Richard Gaskin via use-livecode
Richmond wrote: > On 12.12.21 21:33, Richard Gaskin wrote: >> Stam Kapetanakis wrote: >> > i presume the pdf widget in pro is the opensource xpdfReader but >> > don’t know for sure. >> >> If it is that would be problematic, as the open source edition

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-12 Thread Monte Goulding via use-livecode
ode > wrote: > > Thank you Monte, > > We've just started to make a map from XPDF APIs to the PDF Widget APIs, so > I'll make sure that gets done soon and add any missing capabilities as > requests to the LC Quality Center. > > With regard to the hilitedRange and hilite

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-12 Thread Paul Dupuis via use-livecode
Thank you Monte, We've just started to make a map from XPDF APIs to the PDF Widget APIs, so I'll make sure that gets done soon and add any missing capabilities as requests to the LC Quality Center. With regard to the hilitedRange and hilitedRangeText properties, can you just advise

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-12 Thread Monte Goulding via use-livecode
Hi Folks Currently you can extract text in the widget by setting the hilitedRange and getting the hilitedRangeText. It wouldn’t be that hard to add extracted text to the documentPages property. The PDF widget was built to meet the requirements for a client rather than to match the features

Re: How to extract whole text from a PDF file with the PDF

2021-12-12 Thread Paul Dupuis via use-livecode
On 12/12/2021 8:59 AM, Stam Kapetanakis via use-livecode wrote: Hi Torsten, i presume the pdf widget in pro is the opensource xpdfReader but don’t know for sure. It is not xpdfreader. The XPDF Erternal AND the PDF Wdiget with Licecode are based on the Google PDFium Library. The first is C

Re: How to extract whole text from a PDF file with the PDF

2021-12-12 Thread Richmond via use-livecode
The consequences are endless. On 12.12.21 21:33, Richard Gaskin via use-livecode wrote: Stam Kapetanakis wrote: > i presume the pdf widget in pro is the opensource xpdfReader but > don’t know for sure. If it is that would be problematic, as the open source edition of xpdfReader is li

Re: How to extract whole text from a PDF file with the PDF

2021-12-12 Thread Richard Gaskin via use-livecode
Stam Kapetanakis wrote: > i presume the pdf widget in pro is the opensource xpdfReader but > don’t know for sure. If it is that would be problematic, as the open source edition of xpdfReader is licensed under GPL, and LC no longer has an edition compatible with GPL. -- Richard

Re: How to extract whole text from a PDF file with the PDF

2021-12-12 Thread Stam Kapetanakis via use-livecode
Hi Torsten, i presume the pdf widget in pro is the opensource xpdfReader but don’t know for sure. I did post on how to extract text from PDF using the free xpdfReader and non-pro LC: https://forums.livecode.com/viewtopic.php?f=8=35280=201036=Xpdfreader#p201036 I presume that with Pro

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-11 Thread Paul Dupuis via use-livecode
I suspect it is for backward compatibility. When I turned over the XPDF external to Livecode, I asked that they maintain it for a couple years. I had expected we'd migrate out apps to the PDF widget by then, but business factors mean we're only now just starting a migration. That's why I

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-11 Thread matthias rebbe via use-livecode
Ah, i thought you were referring only to XPDF. Btw. do you have an idea why both, XPDF external and PDF widget, are maintained? Wouldn't it make sense to have only one pdf solution included? Or am i missing something? Regards, Matthias > Am 11.12.2021 um 02:01 schrieb Paul Dupuis via

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-10 Thread Paul Dupuis via use-livecode
Yes, I am familiar with the XPDF external (based on Google's PDFium library), having designed it and paid Monte to code it and then turned it over to LiveCode. I was referring to the PDF Widget (also based on Google's PDFium), which should have a comparable property for fetching the text

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-10 Thread matthias rebbe via use-livecode
. > Am 10.12.2021 um 23:22 schrieb Paul Dupuis via use-livecode > : > > There must be an undocumented property for the text of a page - there was a > function to return the full text of a page in the External (XPDF) and to get > the full text of the PDF file, you just stepped

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-10 Thread Paul Dupuis via use-livecode
There must be an undocumented property for the text of a page - there was a function to return the full text of a page in the External (XPDF) and to get the full text of the PDF file, you just stepped through the pages (1..N) getting and concatenating the page text. Monte? LC 10.0.0

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-10 Thread matthias rebbe via use-livecode
Hi Torsten, i think the PDF widget does not support extracting text by code. At least the documentation does not show any information about this. You wrote, that you have a business license. That would mean, that you can use the Pro features of Livecode. There is an external included

How to extract whole text from a PDF file with the PDF widget?

2021-12-10 Thread Torsten Holmer via use-livecode
Hi, I have a PDF file with text and pictures, but I just want the text. I can do it manually with Ctrl-A and Ctrl-Copy by viewing the file with Preview on MacOS. I have a business licence and want to use the PDF widget but I cannot find a way to do it. Can someone help me out? Cheers

Re: PDF Viewer widget - how to enable interaction?

2021-12-09 Thread Keith Clarke via use-livecode
PDFium library not finding ‘clickables’ in the PDF documents - or the LC wrapping has a bug... If navigation is under script control the documentation suggests that every ‘clickable’ that works in any PDF viewer would need to be extracted into either the documentBookmarks

Re: PDF Viewer widget - how to enable interaction?

2021-12-08 Thread Monte Goulding via use-livecode
am, Keith Clarke via use-livecode > wrote: > > Hi folks, > Can anyone share any experiences with the PDF Viewer widget that’s available > via the old Business Edition or Pro Pack subscription? > > I’m testing this on LC 9.6.5 with a Pro subscription on Mac 11.6. Followin

Re: PDF Viewer widget - how to enable interaction?

2021-12-08 Thread doc hawk via use-livecode
keith kayaked, > Hi folks, > Can anyone share any experiences with the PDF Viewer widget that’s available > via the old Business Edition or Pro Pack subscription? I had great hopes and excitement. I rearranged my project to use it. All looked great on screen. And then I found that

PDF Viewer widget - how to enable interaction?

2021-12-08 Thread Keith Clarke via use-livecode
Hi folks, Can anyone share any experiences with the PDF Viewer widget that’s available via the old Business Edition or Pro Pack subscription? I’m testing this on LC 9.6.5 with a Pro subscription on Mac 11.6. Following the PDF guide https://livecode.com/resources/guide/ I’ve been able to load

Re: PDF in browser on Mac

2021-11-15 Thread Klaus major-k via use-livecode
Hi Henry, > Am 15.11.2021 um 16:02 schrieb HENRY LOWE via use-livecode > : > > Using the browser widget to view a PDF under Mac OS 12.0.1 and LC 9.6.5 > (rc2), if I right click (control + click) anywhere in the displayed PDF > (including white space) I get a pop-up me

  1   2   3   4   5   6   7   8   9   10   >