Re: View and print a PDF file from Rev

2009-12-30 Thread Josh Mellicker
Just FYI, the Acrobat Developer FAQ says: How Can I Display a PDF File in an External Application Window? There are several ways to have the Acrobat program display a PDF file in an external application’s window. Acrobat must be installed on the system to view a PDF file in your own

Re: View and print a PDF file from Rev

2009-12-22 Thread Josh Mellicker
On Sep 14, 2009, at 5:59 PM, Scott Rossi wrote: I have some code for displaying PDF pages in a Rev player, but as far as I know, the resolution is limited to the screen so I don't think this would be useful for you for printing. Hi Scott, is the code anything different than set the

Re: View and print a PDF file from Rev

2009-12-22 Thread Scott Rossi
Recently, Josh Mellicker wrote: I have some code for displaying PDF pages in a Rev player, but as far as I know, the resolution is limited to the screen so I don't think this would be useful for you for printing. Hi Scott, is the code anything different than set the filename to? In

Re: View and print a PDF file from Rev

2009-09-15 Thread Josep
Hi, OK, I test more with the revBrowser. But exist any way to print a PDF directly without any dialog, only to select the printer? Maybe using applescript? The player is fine to show a preview but any way to move page by page without show the controller? Salut, Josep -- View this message

Re: View and print a PDF file from Rev

2009-09-15 Thread Josep
Hi List, Reply to myself... :) I obtained print a PDF file without any dialog from the terminal using the lpr command selecting one printer. So this must be posible run using the shell function from rev. To know what printers are available I can obtaing from put the availablePrinters

View and print a PDF file from Rev

2009-09-14 Thread Josep
Hi List, I trying to show a PDF file in Rev and print it. Using revBrowser when I try to print crash all Rev.. also use embeded Acrobat viewer inside revBrowser. How use by default viewer? Using the player, I don't know how move page by page and print the PDF. It's posible? Any tip or idea how

Re: View and print a PDF file from Rev

2009-09-14 Thread Scott Rossi
Recently, Josep wrote: I trying to show a PDF file in Rev and print it. Using revBrowser when I try to print crash all Rev.. also use embeded Acrobat viewer inside revBrowser. How use by default viewer? Using the player, I don't know how move page by page and print the PDF. It's posible

RE: View and print a PDF file from Rev

2009-09-14 Thread Jim Bufalini
Hi Josep I trying to show a PDF file in Rev and print it. Using revBrowser when I try to print crash all Rev.. also use embeded Acrobat viewer inside revBrowser. How use by default viewer? Using the player, I don't know how move page by page and print the PDF. It's posible? Any tip

Re: Print to PDF?

2009-08-07 Thread François Chaplais
Le 7 août 09 à 00:40, Richmond Mathewson a écrit : Peter Alcibiades wrote: Richmond, don't you want cups-pdf if its Ubuntu? Its real simple. Just gives you a virtual printer which is a file. Or is there something else? Peter Richmond Mathewson-2 wrote: Print to PDF? I think I am

Re: Print to PDF?

2009-08-07 Thread Peter Brigham MD
On Aug 7, 2009, at 8:08 AM, François Chaplais wrote: snip put the number of lines of theText into n repeat with i = n down to 2 get line i of theText if it is empty and line (i-1) of theText is empty then delete line i of theText end if end repeat snip Couldn't you

Re: Print to PDF?

2009-08-07 Thread François Chaplais
wouldn't it turn cr cr cr cr into cr cr ? Le 7 août 09 à 20:54, Peter Brigham MD a écrit : On Aug 7, 2009, at 8:08 AM, François Chaplais wrote: snip put the number of lines of theText into n repeat with i = n down to 2 get line i of theText if it is empty and line (i-1) of

Re: Print to PDF?

2009-08-07 Thread Richmond Mathewson
François Chaplais wrote: wouldn't it turn cr cr cr cr into cr cr ? Le 7 août 09 à 20:54, Peter Brigham MD a écrit : On Aug 7, 2009, at 8:08 AM, François Chaplais wrote: snip put the number of lines of theText into n repeat with i = n down to 2 get line i of theText if it is

Re: Print to PDF?

2009-08-07 Thread Mark Schonewille
What about repeat until cr cr is not in theText replace (cr cr) with cr in theText end repeat -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com Submit your software products to http://www.quickestpublisher.com and get found!

Re: Print to PDF?

2009-08-07 Thread François Chaplais
Le 7 août 09 à 22:45, Mark Schonewille a écrit : What about repeat until cr cr is not in theText replace (cr cr) with cr in theText end repeat -- Best regards, Mark Schonewille yes, this does it. cheers François ___ use-revolution mailing

Re: Print to PDF?

2009-08-07 Thread Mark Smith
Also, filter theText without empty will do the same job. best, Mark Smith On 7 Aug 2009, at 21:57, François Chaplais wrote: Le 7 août 09 à 22:45, Mark Schonewille a écrit : What about repeat until cr cr is not in theText replace (cr cr) with cr in theText end repeat -- Best regards,

Re: Print to PDF?

2009-08-07 Thread François Chaplais
Le 7 août 09 à 22:37, Richmond Mathewson a écrit : François Chaplais wrote: wouldn't it turn cr cr cr cr into cr cr ? Le 7 août 09 à 20:54, Peter Brigham MD a écrit : On Aug 7, 2009, at 8:08 AM, François Chaplais wrote: snip put the number of lines of theText into n repeat with i = n

Re: Print to PDF?

2009-08-07 Thread Bernard Devlin
François, thanks for this idea. I have Quartam PDF but there are situations where I can imagine using your idea. It may not be what Richmond wants, but it is quite ingenious. Bernard 2009/8/7 François Chaplais francois.chapl...@mines-paristech.fr: From one of you previous posts, I understood

Print to PDF?

2009-08-06 Thread Richmond Mathewson
Print to PDF? I think I am reinventing the wheel . . . advice welcomed. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com

Re: Print to PDF?

2009-08-06 Thread Warren Kuhl
Mathewson richmondmathew...@gmail.com wrote: Print to PDF? I think I am reinventing the wheel . . . advice welcomed. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Print to PDF?

2009-08-06 Thread Peter Alcibiades
Richmond, don't you want cups-pdf if its Ubuntu? Its real simple. Just gives you a virtual printer which is a file. Or is there something else? Peter Richmond Mathewson-2 wrote: Print to PDF? I think I am reinventing the wheel . . . advice welcomed

Re: Print to PDF?

2009-08-06 Thread Richmond Mathewson
Peter Alcibiades wrote: Richmond, don't you want cups-pdf if its Ubuntu? Its real simple. Just gives you a virtual printer which is a file. Or is there something else? Peter Richmond Mathewson-2 wrote: Print to PDF? I think I am reinventing the wheel . . . advice welcomed

Re: Print to PDF on Win?

2007-03-06 Thread Geir A. Myrestrand
Richard Gaskin wrote: Which freeware solution would you recommend for printing to PDF from Windows? I have a lot of printing tests to do, so I prefer a virtual printer. TIA - http://www.dopdf.com/ -- Geir A. Myrestrand ___ use-revolution

Print to PDF on Win?

2007-03-05 Thread Richard Gaskin
Which freeware solution would you recommend for printing to PDF from Windows? I have a lot of printing tests to do, so I prefer a virtual printer. TIA - -- Richard Gaskin Fourth World Media Corporation ___ [EMAIL PROTECTED]

Re: Print to PDF on Win?

2007-03-05 Thread Andre Garzia
Richard, there is a free one called pdf995 which is hosted at pdf995, I've used once some years ago and it worked for me. Cheers andre On Mar 5, 2007, at 6:21 PM, Richard Gaskin wrote: Which freeware solution would you recommend for printing to PDF from Windows? I have a lot of

Re: Print to PDF on Win?

2007-03-05 Thread Roger . E . Eller
Richard, there is a free one called pdf995 which is hosted at pdf995, I've used once some years ago and it worked for me. Cheers andre On Mar 5, 2007, at 6:21 PM, Richard Gaskin wrote: Which freeware solution would you recommend for printing to PDF from Windows? I have a lot

Re: Print to PDF on Win?

2007-03-05 Thread Phil Davis
Hi Richard, After some testing, I installed PDFCreator on our 3 Windows computers here and have since recommended it to others. It works great. http://sourceforge.net/projects/pdfcreator/ Even my wife, a seriously technology-disinclined person, uses it successfully. Phil Davis Richard

Re: Print to PDF on Win?

2007-03-05 Thread Mark Schonewille
Hi Richard, I'm using an open-source tool PDFCreator, which works very nicely once you know how to use it. It can also serve as a printer server for Mac OS X while running on Windows and can run from the command line while it also has a complete GIU (for converting files and monitoring

Re: Print to PDF on Win?

2007-03-05 Thread Richard Gaskin
Mark Schonewille wrote: I'm using an open-source tool PDFCreator, which works very nicely once you know how to use it. It can also serve as a printer server for Mac OS X while running on Windows and can run from the command line while it also has a complete GIU (for converting files and

Re: Print to PDF on Win?

2007-03-05 Thread Chipp Walters
http://www.cutepdf.com/Products/CutePDF/writer.asp I've used it for years ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: