Search found 36 matches

by _olq
Wed Jun 07, 2017 3:12 pm
Forum: PDF Creation
Topic: Compare two pdf file
Replies: 5
Views: 14805

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...
by _olq
Thu Sep 29, 2016 3:42 pm
Forum: Flows
Topic: Sequential numbering with leading zeros
Replies: 8
Views: 11762

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
by _olq
Thu Nov 26, 2015 10:10 pm
Forum: PDF Creation
Topic: Separated colors into composite PDF
Replies: 4
Views: 12706

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

Code: Select all

-combine
but only for raster images.
First you need to save file to TIFF format.
On the web you can find some examples.

Best,
by _olq
Tue May 12, 2015 10:27 am
Forum: Flows
Topic: Combining XML files
Replies: 6
Views: 10241

Re: Combining XML files

Thanks Dwight,

I make it in Perl. For me it was easier :)
by _olq
Tue May 05, 2015 9:49 am
Forum: Flows
Topic: Combining XML files
Replies: 6
Views: 10241

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...
by _olq
Mon May 04, 2015 4:21 pm
Forum: Flows
Topic: Combining XML files
Replies: 6
Views: 10241

Re: Combining XML files

yes I know :)
I use the 'XSLT transform' with the stylesheet, but...
How use it for many files in folder?
by _olq
Mon May 04, 2015 1:52 pm
Forum: Flows
Topic: Combining XML files
Replies: 6
Views: 10241

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> </...
by _olq
Thu Apr 16, 2015 9:25 am
Forum: Applications
Topic: Select printing paper based on pdf size
Replies: 14
Views: 18578

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.
by _olq
Wed Apr 15, 2015 1:31 pm
Forum: Applications
Topic: Select printing paper based on pdf size
Replies: 14
Views: 18578

Re: Select printing paper based on pdf size

Hi,
flow might look like this
Image

In Arguments line:

Code: Select all

-sDEVICE=mswinpr2 -dBATCH -dNOPAUSE -dNoCancel -sPAPERSIZE=a3 -sOutputFile="%printer%HPLaserJet" "%1"
Where "HPLaserJet" is name of your printer
Output: None
by _olq
Mon Apr 13, 2015 9:36 am
Forum: Applications
Topic: Select printing paper based on pdf size
Replies: 14
Views: 18578

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.
by _olq
Mon Mar 30, 2015 10:45 am
Forum: LEGACY scripting
Topic: Send Switch Stat variables to JavaScript
Replies: 10
Views: 14482

Re: Send Switch Stat variables to JavaScript

Hello,

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

Image

Best regards,
Aleksander
by _olq
Mon Mar 30, 2015 9:31 am
Forum: Flows
Topic: Need the last 5 character of the file name
Replies: 2
Views: 4965

Re: Need the last 5 character of the file name

Hi,

You can use a regular expression:

Code: Select all

\d{5}$


Best regards,
Aleksander
by _olq
Fri Mar 27, 2015 3:32 pm
Forum: LEGACY scripting
Topic: Retrieving files based on the incoming XML file
Replies: 3
Views: 6210

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?
by _olq
Fri Mar 27, 2015 1:22 pm
Forum: LEGACY scripting
Topic: Retrieving files based on the incoming XML file
Replies: 3
Views: 6210

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...
by _olq
Fri Mar 27, 2015 10:15 am
Forum: LEGACY scripting
Topic: How to call 'FTP receive'
Replies: 9
Views: 11132

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...