Search found 358 matches

by Padawan
Thu Apr 19, 2018 11:03 am
Forum: LEGACY scripting
Topic: XSLT help
Replies: 16
Views: 25937

Re: XSLT help

When I test it the configurator it also uses -xsltversion:2.0 and that works for me. But I use a standalone Saxon instead of the one in inside doxygen. Can you try that as well? You can download it here: https://www.saxonica.com/download/java.xml After installing you can point the configurator to th...
by Padawan
Wed Apr 18, 2018 6:01 pm
Forum: Flows
Topic: Sort xml based on field content
Replies: 4
Views: 5011

Re: Sort xml based on field content

If the XML is already a dataset of the PDF, then you don't need the XML pickup anymore. You will just have to adjust the variable in the "Higher then or equal to 500" connection so it points to the correct xml dataset associated with your job.
by Padawan
Wed Apr 18, 2018 1:55 pm
Forum: LEGACY scripting
Topic: XSLT help
Replies: 16
Views: 25937

Re: XSLT help

I think you can change that by using a relative output path instead of an absolute. I tested this in the Saxon configurator and you get all output files in the output folder. You can choose to output them in one folder by setting "Collect Results" to Yes. <?xml version="1.0" enco...
by Padawan
Tue Apr 17, 2018 12:01 pm
Forum: Flows
Topic: Attach metadata from multiple files to e-mail
Replies: 4
Views: 4923

Re: Attach metadata from multiple files to e-mail

If you want metadata from all jobs and the metadata is on a different place, then you can assemble the files with Merge Metadata set to Yes and you will have everything. You mention that it is the same metadata, so Merge Metadata will overwrite some and only keep the metadata of one input file. But ...
by Padawan
Mon Apr 16, 2018 10:56 am
Forum: Flows
Topic: Sort xml based on field content
Replies: 4
Views: 5011

Re: Sort xml based on field content

Personally, I would do it like this: - Use xml pickup to store the XML files as dataset - Have two outgoing connections - One which only accepts jobs where you check if the number is lower then 500. (Make sure you use an Integer variable) - One which accepts all other jobs Something like this flow: ...
by Padawan
Mon Apr 16, 2018 10:55 am
Forum: Flows
Topic: Attach metadata from multiple files to e-mail
Replies: 4
Views: 4923

Re: Attach metadata from multiple files to e-mail

Starting from version 18 of Switch you can also add private data to jobs via the "Set Job Private Data" property which is added to intermediate folders. If the issue is the retrieving of the Private Data, you can use Switch variables in mail templates. So adding the [Job.PrivateData:Key=&q...
by Padawan
Mon Apr 09, 2018 10:45 am
Forum: Flows
Topic: Issues with Samba shares [QNAP NAS]
Replies: 3
Views: 5128

Re: Issues with Samba shares [QNAP NAS]

https://forum.enfocus.com/viewtopic.php?f=13&t=1164&p=6510&hilit=safe+move#p6510 This page mentions that disabling safe move disables the ".~#~" prefix. That prefix starts with a dot, which means that on mac, unix and linux systems it is a hidden file because of that. Does you...
by Padawan
Wed Mar 28, 2018 5:16 pm
Forum: PitStop Pro
Topic: Selecting Spot Color by name "None" not possible?
Replies: 1
Views: 4233

Re: Selecting Spot Color by name "None" not possible?

I have PitStop Pro 17, update 1. An Action List like this reports objects with Spot color None

Select Spot Color by Name, "None"
Log selection

Does this work for you? Are you doing something else?
by Padawan
Mon Mar 26, 2018 12:00 pm
Forum: Flows
Topic: Generate a UUID For Use in XML?
Replies: 2
Views: 4986

Re: Generate a UUID For Use in XML?

Switch doesn't provide any functionality to create UUID's that I'm aware of. Possible solutions I see are: - Write functionality in Switch Javascript to create them (based on Math.Random()) The following page can give some inspiration: https://stackoverflow.com/questions/105034/create-guid-uuid-in-j...
by Padawan
Fri Mar 23, 2018 3:38 pm
Forum: Flows
Topic: 'align horizontally' and 'align vertically' don't work
Replies: 2
Views: 3350

Re: 'align horizontally' and 'align vertically' don't work

It works over here. It might be best to report it to Enfocus Support to find out why it doesn't work for you.

Version 2018 is out, so if it is a bug it might be fixed in that version as well.
by Padawan
Fri Mar 23, 2018 3:24 pm
Forum: Action Lists
Topic: What to remove?
Replies: 1
Views: 4476

Re: What to remove?

With default settings yellow rectangles are forms. (You can change this in the colors section of the PitStop Pro preferences) Forms can change the visual appearance of the contents, so getting the text outside of the forms can result in a different look of the text, so I would personally not be a fa...
by Padawan
Thu Mar 22, 2018 5:40 pm
Forum: PitStop Pro
Topic: Pitstop v13 - How Do I reactivate so it shows in MY Products?
Replies: 1
Views: 3668

Re: Pitstop v13 - How Do I reactivate so it shows in MY Products?

To be able to reactivate them you first have to deactivate the licenses. After that you can reactivate them using your new Enfocus ID.
by Padawan
Mon Mar 19, 2018 1:49 pm
Forum: LEGACY scripting
Topic: adding to a child node
Replies: 11
Views: 13673

Re: adding to a child node

It looks like creating a node and adding it multiple times causes the issue. Recreating the node each time solves it. Can you try this code? function jobArrived( s : Switch, job : Job ) { //Get incoming XML file as a new XML document var theXML = new Document(job.getPath()); //Extract the BatchID no...
by Padawan
Mon Mar 12, 2018 2:44 pm
Forum: LEGACY scripting
Topic: JavaScript to Save as idml file in Indesign
Replies: 7
Views: 12286

Re: JavaScript to Save as idml file in Indesign

Hi THierry,

By update you mean an update of InDesign? If so, which version are you running now?
Do you get an error in the messages?
by Padawan
Thu Mar 08, 2018 10:46 am
Forum: Flows
Topic: NestedName with 3 RegEx rules -> Connection Issue
Replies: 5
Views: 5952

Re: NestedName with 3 RegEx rules -> Connection Issue

I'm glad you got it to work. I also like the creative usage of the Execute Command Friend :)