Search found 113 matches

by Arthur
Thu Mar 28, 2019 6:42 pm
Forum: Flows
Topic: XML Pickup for Multiple Values
Replies: 8
Views: 11618

Re: XML Pickup for Multiple Values

Could I add a question here regarding this method, which I am trying to utilise for something similar ?? XML structure is as per the following: <?xml version="1.0" encoding="UTF-8"?> -<csv> -<row> <col name="FileName">Some Filename</col> <col name="FileSize in KB&q...
by Arthur
Tue Mar 26, 2019 11:26 am
Forum: Flows
Topic: Rename Job - add text after number of characters
Replies: 6
Views: 6534

Re: Rename Job - add text after number of characters

the captured group shall be in {} I guess, not the regular ().
when it is defined as (NL|FR) it is literally taken as NL|FR not as either one or the other.
by Arthur
Sat Mar 09, 2019 11:39 am
Forum: Flows
Topic: .bat variables in Switch
Replies: 2
Views: 4159

Re: .bat variables in Switch

Or completely the long way - BAT file is effectively a TXT file. Rename BAT to TXT, so you can Pick up TXT file as XML (using an app for it) and the values shall be there. You may need to adjust some formatting of the BAT, so that it then is better structured as XML, or use RegEX to search through X...
by Arthur
Sat Mar 09, 2019 11:28 am
Forum: PitStop Pro
Topic: Need help with adding bleed and crops
Replies: 6
Views: 8097

Re: Need help with adding bleed and crops

@abailescollins As far as this action of Pitstop is straightforward and easy to use, also said to be ideal for all the Office type of documents, where all page boxes are equal and most likely to = TrimBox, this does not always work. Or most often it does not work at all. Especially when there is no ...
by Arthur
Thu Mar 07, 2019 4:36 pm
Forum: PitStop Pro
Topic: Enfocus Subscription Service detected as PDM:Trojan.Win32.Generic
Replies: 1
Views: 3381

Enfocus Subscription Service detected as PDM:Trojan.Win32.Generic

Just attempted to reinstall / repair PitStop Pro 18 installation and to my suprise Kaspersky Antivirus detected the: C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\plug_ins\Enfocus\Resources\LicenseService\EnfocusSubscriptionService\EnfocusSubscriptionService.bat as Malware - PDM:Trojan.Win32.Gen...
by Arthur
Mon Feb 25, 2019 4:39 pm
Forum: Flows
Topic: XML Pickup does not pick up on random jobs...
Replies: 8
Views: 8533

Re: XML Pickup does not pick up on random jobs...

Hi Freddy. This is what I did, so the result is achieved, but as already agreed - this should not be required if the complete folder name was regarded as NameProper here. Little things but can be a nightmare sometimes :) Thank you for reporting it to the Team for amendment on future releases if poss...
by Arthur
Mon Feb 25, 2019 2:08 pm
Forum: Flows
Topic: XML Pickup does not pick up on random jobs...
Replies: 8
Views: 8533

Re: XML Pickup does not pick up on random jobs...

It seems to be a bug ... Just found out that when the initial filename is: 3410017 Dr. Jesus Mesones Patricia Ruth Guaraz <- this is not going to work. If the same file is renamed so that there was no DOT after the Dr, so effectively the filename is: 3410017 Dr Jesus Mesones Patricia Ruth Guaraz <- ...
by Arthur
Mon Feb 25, 2019 1:16 pm
Forum: Flows
Topic: XML Pickup does not pick up on random jobs...
Replies: 8
Views: 8533

Re: XML Pickup does not pick up on random jobs...

@ LasseThid - this is true, the unpacked files from 7z come as a folder. But the other jobs that went through fine - are on exactly the same basis, come as a job folder with docs inside. And the XML Pickup attached the XML just fine. @ Malcolm - yes, they do time out. The logs show the following: 'J...
by Arthur
Mon Feb 25, 2019 12:15 pm
Forum: Flows
Topic: XML Pickup does not pick up on random jobs...
Replies: 8
Views: 8533

XML Pickup does not pick up on random jobs...

Hi everyone; I am having a bit of a weird issue. XML Pickup on some jobs does not pickup the XML. Most of the jobs is going through just fine with the XML properly attached, some for no reason is not. Both JOB Name and the XML name are identical. Yet it does not pick up... See attached screenshot. T...
by Arthur
Thu Feb 07, 2019 2:30 pm
Forum: Flows
Topic: Inject complete folder with XML files
Replies: 2
Views: 4128

Re: Inject complete folder with XML files

what if you mapped this location as a network location rather than a fixed drive, and then used the UNC path to it ??
by Arthur
Thu Feb 07, 2019 1:53 pm
Forum: Flows
Topic: Add fixed length numerical value as Private Data or suffix
Replies: 6
Views: 6753

Re: Add fixed length numerical value as Private Data or suffix

Ahhh I see. So in order to get that you'd need the following Regex: ^(.*)(-)(\d{1})(.[^.]+)$ and the substitution would be: \1\20\3\4 where the 0 between \2 and \3 makes it 2-digit. If 3 digits needed, then two 0s need to be put in place. If you had 2 digits there, then the regex would be: ^(.*)(-)(...
by Arthur
Thu Feb 07, 2019 1:21 pm
Forum: Flows
Topic: Add fixed length numerical value as Private Data or suffix
Replies: 6
Views: 6753

Re: Add fixed length numerical value as Private Data or suffix

So from this string example - P123456_1_flying-elephant-100x70-1.pdf
Which element / block indicates the single digit number, or double digit number or - if applicable (a 3digit) that requires changing ??
by Arthur
Thu Feb 07, 2019 11:00 am
Forum: Flows
Topic: Add fixed length numerical value as Private Data or suffix
Replies: 6
Views: 6753

Re: Add fixed length numerical value as Private Data or suffix

Search & Replace -> RegEx ??
Search ^(\d{1})(_)(.*)
replace 0\1\2\3 ??
by Arthur
Wed Jan 23, 2019 1:16 pm
Forum: Flows
Topic: Assembling a split and ungrouped job
Replies: 2
Views: 4157

Re: Assembling a split and ungrouped job

Have you tried to sort files before the merge using the SORT FILES configurator ?? Worth a try. Alternatively - a new app has just been released, named - Folder Apps (comes free of charge). One of the little tools it offers is: "File Property Sort" puts files inside a job folder in a certa...
by Arthur
Tue Jan 22, 2019 4:54 pm
Forum: Flows
Topic: Rename Job - add text after number of characters
Replies: 6
Views: 6534

Re: Rename Job - add text after number of characters

1. Rename Job -> Search & Replace

Search For Regular Expression (\d{10})(.*)

Replace with: \1-hd-\2

- edit -
I assumed the first 10 characters are numbers. But should that not be the case, the RegEx to search for shall be:

(.{10})(.*)

Replacement is the same: \1-hd-\2