Search found 592 matches

by jan_suhr
Tue Aug 29, 2023 2:20 pm
Forum: Flows
Topic: XML Pickup Help.
Replies: 7
Views: 3946

Re: XML Pickup Help.

In the rename tool you can use "Keep segment" as one of the Actions.
by jan_suhr
Tue Aug 29, 2023 1:43 pm
Forum: Flows
Topic: XML Pickup Help.
Replies: 7
Views: 3946

Re: XML Pickup Help.

If you just want to keep a part of the file name you can save that as Private data. When a job passes a folder you can add Private data to it. Some apps can also save Private data to a job. Then when you make the Private data for this case you can set it up to just take the part you need. Now you ha...
by jan_suhr
Tue Aug 29, 2023 10:24 am
Forum: Flows
Topic: XML Pickup Help.
Replies: 7
Views: 3946

Re: XML Pickup Help.

The XML-pickup is an important tool and necessary for doing real automation. Metadata along asset means that Switch will pickup the content in the XML and attach it to the job file. For Switch to know which XML-file it should attach to the job file they must have the same name before the extension. ...
by jan_suhr
Wed Aug 16, 2023 8:19 pm
Forum: Switch
Topic: Evaluating metadata to connection paths
Replies: 3
Views: 4628

Re: Evaluating metadata to connection paths

Right click on the connection and select "Include these jobs" and use Metadata.

https://www.enfocus.com/manuals/UserGui ... lters.html
by jan_suhr
Mon Aug 07, 2023 4:04 pm
Forum: Switch
Topic: [Solved] Combine several XML
Replies: 5
Views: 4954

Re: Combine several XML

The app Make XML can do it.
by jan_suhr
Fri Jul 21, 2023 2:41 pm
Forum: Flows
Topic: HTTP passing variables as part of the URL
Replies: 4
Views: 2694

Re: HTTP passing variables as part of the URL

The ones inside the variable
by jan_suhr
Fri Jul 21, 2023 1:42 pm
Forum: Flows
Topic: HTTP passing variables as part of the URL
Replies: 4
Views: 2694

Re: HTTP passing variables as part of the URL

Have you tried to escape the slashes like \/
by jan_suhr
Thu Jun 29, 2023 9:55 am
Forum: Switch
Topic: select specific xml-value
Replies: 3
Views: 5761

Re: select specific xml-value

The String Replace app should do the job for you.
https://www.enfocus.com/en/appstore/pro ... ng-replace
by jan_suhr
Sat Jun 17, 2023 9:29 am
Forum: Flows
Topic: Math Expressions With Metadata
Replies: 2
Views: 7737

Re: Math Expressions With Metadata

Your calculation formula worked for me, but I used PrivateData for the values since it was easier to set up for testing.

I see that you have the Metadata as TextIndexed try instead with just Text
by jan_suhr
Thu Jun 01, 2023 10:10 pm
Forum: Flows
Topic: Get one layer from Imagemagick
Replies: 15
Views: 51774

Re: Get one layer from Imagemagick

Here is the settings.

The %1 variable that Execute command uses is the full path to the incoming file. So you just set it up as in the attached screen shot and it will work for you.

Snag_64443c0d.png
Snag_64443c0d.png (21.7 KiB) Viewed 47004 times
by jan_suhr
Tue May 30, 2023 7:42 pm
Forum: Appstore
Topic: Problem with File Pool Cleanup
Replies: 8
Views: 12872

Re: Problem with File Pool Cleanup

You should use \\server-address\folder-path\
by jan_suhr
Thu May 25, 2023 11:18 am
Forum: Flows
Topic: Assemble job every other day
Replies: 1
Views: 1939

Re: Assemble job every other day

You could try the Date Calculator app to calculate the date 2 days from now
by jan_suhr
Thu May 25, 2023 9:34 am
Forum: Flows
Topic: Get one layer from Imagemagick
Replies: 15
Views: 51774

Re: Get one layer from Imagemagick

This works for me with the BAT-file created with the app "ExecuteCommand friend" This is my BAT-file, you can add more variables if you want. set filename=%1 set output=%2 "C:\Program Files\ImageMagick-7.0.11-Q16-HDRI\convert.exe" %filename%[1] -resize [Job.PrivateData:Key="...
by jan_suhr
Tue May 23, 2023 5:20 pm
Forum: Flows
Topic: Get one layer from Imagemagick
Replies: 15
Views: 51774

Re: Get one layer from Imagemagick

That is because anything between [] is considered to be a variable in a single-line text with variables and [0] is not a valid Switch variable. My advice when working with more complex commands in the context of "Execute command" is to put everything in a batch file/shell script. In "...