Search found 114 matches

by Arthur
Fri Jun 01, 2018 10:05 am
Forum: Forum Guidelines / Forum Feature requests / Forum Bug reports?
Topic: [FEATURE REQUEST] Custom Defined Trigger for Processors
Replies: 3
Views: 11592

[FEATURE REQUEST] Custom Defined Trigger for Processors

Currently the only way to get a configurator / processor play its defined role / action is by an incoming file or certain amount of time passed / time interval actuated. What if we could define a trigger for Hold Job, Assemble Job, Sort Job and probably multitude of other configurators, with an exte...
by Arthur
Fri May 04, 2018 9:07 pm
Forum: PitStop Server
Topic: Serious Issues with PitStop Server 2018 + SWITCH
Replies: 2
Views: 5550

Re: Serious Issues with PitStop Server 2018 + SWITCH

As Zoranj said - it seems to be the case of repointing to the relevant action back again and you're up and running. Also seems like the most secure option is to have your custom actions or preflight profiles as individual external files, to be pointed to.
This works :)
by Arthur
Fri Apr 27, 2018 4:09 pm
Forum: LEGACY scripting
Topic: Regex Help
Replies: 13
Views: 19735

Re: Regex Help

TheCaptain wrote: I've adapted it to :

Segment 13-

.*(?=-V\d{2})
I like that, thx for sharing you can combine the two like this :)
by Arthur
Wed Apr 25, 2018 6:28 pm
Forum: Flows
Topic: Putting information from XML-Paths in an Array
Replies: 2
Views: 4238

Re: Putting information from XML-Paths in an Array

I would be inclined to say you need a XSLT transformation to return only the Message values in a new XML. This way you will have only what you need :) But the XSLT is not so much of my fields of expertise, so should that be the case - I'd leave that to have more experienced folks here to help you wi...
by Arthur
Fri Apr 20, 2018 5:17 pm
Forum: LEGACY scripting
Topic: Regex Help
Replies: 13
Views: 19735

Re: Regex Help

(^(\d{6})([a-z])-)(.*)(-V(\d{2})) this returns the COMPANY-BRAND-SUBBRAND-Item-Additional Info which is under \4 of the above RegEx. it may not require the ^ at the beginning. Tested it only in the online regex tool, rather than Switch, which sometimes is a bit fussy as to how you define the RegEx, ...
by Arthur
Thu Apr 19, 2018 5:03 pm
Forum: LEGACY scripting
Topic: Regex Help
Replies: 13
Views: 19735

Re: Regex Help

why can you not use SEGMENT 8-15 ??
If the company is after 7 characters starting at position 8....
That seems the easiest to me. Would it work ??

--- edit ----
actually 9 - 16 :)
As the string for Company starts at pos 9 :)
by Arthur
Tue Apr 17, 2018 8:32 pm
Forum: LEGACY scripting
Topic: How to add 2 days to Date in xml content- in Switch Scriptor
Replies: 8
Views: 14510

Re: How to add 2 days to Date in xml content- in Switch Scriptor

RegEx:
search for: ^(.*)(vutek)(.*)
replace with: \1ticket\3
by Arthur
Sat Apr 07, 2018 3:28 pm
Forum: Applications
Topic: adding XMP data to photoshop files (different formats)
Replies: 2
Views: 8201

Re: adding XMP data to photoshop files (different formats)

dkelly wrote: PS - I have developed a Switch flow that uses the open source Exiftool to read and write XMP, Exif and IPTC metadata.
Hey Dwight - would there be a chance of this being shared?
by Arthur
Fri Mar 30, 2018 6:14 pm
Forum: Flows
Topic: Extracting metadata from an excel
Replies: 5
Views: 8011

Re: Extracting metadata from an excel

@zoranj The value of "Impressions in a specific Node /Log/SQLStatementValue/Row[3]/Column[5][@Name="Impressions"] A list of all of the values [Metadata.TextIndexed:Path="/Log/SQLStatementValue/Row/Column[@Name='Impressions']",Dataset="Xml",Model="XML"] A...
by Arthur
Fri Mar 30, 2018 12:33 pm
Forum: Flows
Topic: pdftk and cat command
Replies: 18
Views: 32606

Re: pdftk and cat command

For this particular scenario we're using Quite HotFolders where it's a proverbial doddle to achieve that. You can tell it to insert a blank page at whatever intervals you want, whatever size of a blank you want, how many blanks you need etc plus so much more... Worth considering, we've been using it...
by Arthur
Tue Mar 27, 2018 6:56 pm
Forum: Flows
Topic: Non ImageMagick image conversion
Replies: 1
Views: 3080

Re: Non ImageMagick image conversion

Useful, thank you :)
by Arthur
Thu Mar 22, 2018 4:45 pm
Forum: Flows
Topic: XML Repeater Question
Replies: 1
Views: 2429

Re: XML Repeater Question

Hi Gilmore; It is difficult to give you any help if you provide no details as to what exactly you are dealing or having problems with. An example of the structure of the XML as well as the XML Repeater settings would be a good point to start i guess... Otherwise people can only guess and suggest sth...
by Arthur
Wed Mar 07, 2018 11:02 am
Forum: Flows
Topic: NestedName with 3 RegEx rules -> Connection Issue
Replies: 5
Views: 5969

Re: NestedName with 3 RegEx rules -> Connection Issue

As it seems you have the scripting module, why not dealing this with a script, you would avoid multiple FS I/O operations especially on heavy files. Unfortunately not, we do not have a Scripting module. The far end right element is a Execute Command Friend, where I create a BAT file, which basicall...
by Arthur
Tue Mar 06, 2018 10:40 pm
Forum: Flows
Topic: Switch - Assembly "Watchdog" Condition
Replies: 3
Views: 4994

Re: Switch - Assembly "Watchdog" Condition

I had a similar issue, where each job comprising of tens or hundred of files, was to be assembled in a certain order and under the condition of exact number of files, otherwise the assembled job would not be completed. What I ended up with is quite lengthy, but it works. You may need a similar thing...