Search found 36 matches
- Wed Jun 07, 2017 3:12 pm
- Forum: PDF Creation
- Topic: Compare two pdf file
- Replies: 3
- Views: 19112
Re: Compare two pdf file
Hi Rakesh, Depending on your requirements there are several solutions on the market, for example, AVT, Globalvision, etc. If you just need a simplest but definitely the cheapest, you can use ImageMagic with command: compare https://www.imagemagick.org/script/compare.php The bottom line is that you c...
- Thu Sep 29, 2016 3:42 pm
- Forum: Flows
- Topic: Sequential numbering with leading zeros
- Replies: 8
- Views: 6159
Re: Sequential numbering with leading zeros
Hi,
You could also do that with Acrobat function: "Bates numbering".
If you point a few files, each of them will be numbered continuously, and next use a Action wizard for automation.
Best,
Aleksander
You could also do that with Acrobat function: "Bates numbering".
If you point a few files, each of them will be numbered continuously, and next use a Action wizard for automation.
Best,
Aleksander
- Thu Nov 26, 2015 10:10 pm
- Forum: PDF Creation
- Topic: Separated colors into composite PDF
- Replies: 4
- Views: 21267
Re: Separated colors into composite PDF
Hi Jakub,
I'm not sure if it will be helpful for you but is one trick to do it.
Using ImageMagick with the command but only for raster images.
First you need to save file to TIFF format.
On the web you can find some examples.
Best,
I'm not sure if it will be helpful for you but is one trick to do it.
Using ImageMagick with the command
Code: Select all
-combine
First you need to save file to TIFF format.
On the web you can find some examples.
Best,
- Tue May 12, 2015 10:27 am
- Forum: Flows
- Topic: Combining XML files
- Replies: 6
- Views: 4782
Re: Combining XML files
Thanks Dwight,
I make it in Perl. For me it was easier
I make it in Perl. For me it was easier

- Tue May 05, 2015 9:49 am
- Forum: Flows
- Topic: Combining XML files
- Replies: 6
- Views: 4782
Re: Combining XML files
For a various number of files I should use different scripts? There is no other way?
You wrote something about Javascript...
You wrote something about Javascript...
- Mon May 04, 2015 4:21 pm
- Forum: Flows
- Topic: Combining XML files
- Replies: 6
- Views: 4782
Re: Combining XML files
yes I know 
I use the 'XSLT transform' with the stylesheet, but...
How use it for many files in folder?

I use the 'XSLT transform' with the stylesheet, but...
How use it for many files in folder?
- Mon May 04, 2015 1:52 pm
- Forum: Flows
- Topic: Combining XML files
- Replies: 6
- Views: 4782
Combining XML files
How to cobine/merge XML files? I have 2 or more files on the same structure in one folder, like this: <data-set> <record> </data1> </data2> </data…> </record> </data-set> I want to merge it together to one file, like this: <data-set> <record> </data1> </data2> </data…> </record> <record> </data1> </...
- Thu Apr 16, 2015 9:25 am
- Forum: Applications
- Topic: Select printing paper based on pdf size
- Replies: 14
- Views: 11165
Re: Select printing paper based on pdf size
Unfortunately, I do not know mac.
See this page: http://www.gnu.org/software/ghostscript/devices.html
I suspect that you can use os2prn, or specified driver.
See this page: http://www.gnu.org/software/ghostscript/devices.html
I suspect that you can use os2prn, or specified driver.
- Wed Apr 15, 2015 1:31 pm
- Forum: Applications
- Topic: Select printing paper based on pdf size
- Replies: 14
- Views: 11165
Re: Select printing paper based on pdf size
Hi,
flow might look like this

In Arguments line:Where "HPLaserJet" is name of your printer
Output: None
flow might look like this

In Arguments line:
Code: Select all
-sDEVICE=mswinpr2 -dBATCH -dNOPAUSE -dNoCancel -sPAPERSIZE=a3 -sOutputFile="%printer%HPLaserJet" "%1"
Output: None
- Mon Apr 13, 2015 9:36 am
- Forum: Applications
- Topic: Select printing paper based on pdf size
- Replies: 14
- Views: 11165
Re: Select printing paper based on pdf size
Hello,
you can do it using the "Execute command" and Ghostscript.
There is parameter -sPAPERSIZE, but I don't see parameter for Paper source.
you can do it using the "Execute command" and Ghostscript.
There is parameter -sPAPERSIZE, but I don't see parameter for Paper source.
- Mon Mar 30, 2015 10:45 am
- Forum: Scripting
- Topic: Send Switch Stat variables to JavaScript
- Replies: 10
- Views: 7252
Re: Send Switch Stat variables to JavaScript
Hello,
You don't need necessarily use Javascript.
You may use the built-in functions "Calculation"

Best regards,
Aleksander
You don't need necessarily use Javascript.
You may use the built-in functions "Calculation"

Best regards,
Aleksander
- Mon Mar 30, 2015 9:31 am
- Forum: Flows
- Topic: Need the last 5 character of the file name
- Replies: 2
- Views: 2523
- Fri Mar 27, 2015 3:32 pm
- Forum: Scripting
- Topic: Retrieving files based on the incoming XML file
- Replies: 3
- Views: 3336
Re: Retrieving files based on the incoming XML file
In fact, I've never used this configurator.
Is it possible to get more than one file and and choose which ones?
Is it possible to get more than one file and and choose which ones?
- Fri Mar 27, 2015 1:22 pm
- Forum: Scripting
- Topic: Retrieving files based on the incoming XML file
- Replies: 3
- Views: 3336
Retrieving files based on the incoming XML file
I have an idea but I need your help, Based on the incoming XML file I want to retrieve the files associated with it. Flow it could look like this: http://i.imgur.com/90Bae7L.png Definitions for properties added to script flow element: Folder - the folder that contains the files for retrive (Choose f...
- Fri Mar 27, 2015 10:15 am
- Forum: Scripting
- Topic: How to call 'FTP receive'
- Replies: 9
- Views: 6358
Re: How to call 'FTP receive'
Thanks to all, nobody said it will be easy :) I think the problem is Windows. I found that the only effective way to call the service ftp.exe is through Batch file or VBScript with Batch file. But I'm not sure this is a good way. I think I’ll look for a different solution. First download all files u...