Search found 358 matches

by Padawan
Mon Mar 29, 2021 6:19 pm
Forum: Preflighting
Topic: PitStop Report within a checkpoint does not link to PDF
Replies: 4
Views: 14847

Re: PitStop Report within a checkpoint does not link to PDF

If you output both report and the file in an output folder, then I believe it should work if you set "Hyperlinks include unique name prefix" to No
by Padawan
Fri Mar 26, 2021 8:27 pm
Forum: PitStop Pro
Topic: Broken Licence
Replies: 6
Views: 5125

Re: Broken Licence

Can you try this?
Close down acrobat and the local license manager
Go to the FLEXnet folder:
Mac: HD: Library: Preferences: FLEXnet Publisher: FLEXnet
Win: C:\ProgramData\FLEXnet
Delete all files inthere that have 'esko' in their filename
Empty the trash bin
by Padawan
Thu Mar 25, 2021 10:00 pm
Forum: PitStop Pro
Topic: Broken Licence
Replies: 6
Views: 5125

Re: Broken Licence

If they already deactivated it, then you should be able to fix it using the instructions on the bottom of this page:
https://enfocus-community.force.com/cus ... uage=en_US
by Padawan
Tue Feb 23, 2021 9:10 pm
Forum: Node.js scripting
Topic: Using UNC-paths in script-definition
Replies: 2
Views: 4180

Re: Using UNC-paths in script-definition

I noticed the same. All the files which are added by myself and not by the script tool is removed when you save in switch scripter.

I reported it to Enfocus and they confirmed the behavior. Feel free to do the same, the more people to report it, the bigger the priority it might get :)
by Padawan
Tue Feb 16, 2021 12:04 pm
Forum: Flows
Topic: Flow not showing same information when activated
Replies: 2
Views: 2962

Re: Flow not showing same information when activated

Is it possible you have setup rules in the properties of the submit hierarchy element to ignore certain locations?

Or maybe keep originals on server is on and the files on the server have already been downloaded by Switch once?
by Padawan
Wed Feb 03, 2021 8:03 pm
Forum: Node.js scripting
Topic: Versioning scripts & Builds
Replies: 7
Views: 9453

Re: Versioning scripts & Builds

Is it necessary to test all your scripts in Switch? From your explanation I suspect that you are the main maintainer of a Switch server and you continuously develop further on your sets of scripts. Personally, I work for an Enfocus reseller. Therefore I write scripts which are used in different Swit...
by Padawan
Fri Jan 15, 2021 11:39 am
Forum: Flows
Topic: Illustrator configurator scripting
Replies: 18
Views: 14844

Re: Illustrator configurator scripting

If that doesn't work, then I think it is best to contact Enfocus Support.
by Padawan
Thu Jan 14, 2021 12:22 pm
Forum: Flows
Topic: Illustrator configurator scripting
Replies: 18
Views: 14844

Re: Illustrator configurator scripting

Can you make a flow like this? - Input folder - Illustrator element setup to open Automatically and save as Illustrator file - Output folder Activate the flow and then drop an Illustrator file in there. If the connection is ok, then you should get a resaved Illustrator file in the output folder. If ...
by Padawan
Wed Jan 13, 2021 10:25 pm
Forum: Switch
Topic: copy with Process.execute
Replies: 11
Views: 9250

Re: copy with Process.execute

Can you try this?
job.log(1, Process.stderr);

Stdout gives normal output, stderr error output
by Padawan
Wed Jan 13, 2021 7:57 pm
Forum: Flows
Topic: Illustrator configurator scripting
Replies: 18
Views: 14844

Re: Illustrator configurator scripting

Does using the default Illustrator configurator functionality work? (Without using custom scripts)
If not, please check the messages again for any relevant messages
by Padawan
Wed Jan 13, 2021 4:33 pm
Forum: Flows
Topic: Illustrator configurator scripting
Replies: 18
Views: 14844

Re: Illustrator configurator scripting

Has there been a change in the setup of Switch that it is now running as a service? Unfortunately, I don't understand what you mean. "Has there been a change in the setup of Switch that it is now running as a service?" Can I look it up somewhere? Unfortunately, I have not received any inf...
by Padawan
Mon Dec 14, 2020 9:23 am
Forum: PitStop Pro
Topic: Conversion CMYK very faded
Replies: 5
Views: 5153

Re: Conversion CMYK very faded

Your screenshot showed PitStop Server preferences, so are you doing the conversion in PitStop Server instead of PitStop Pro? Are you by any chance using the PitStop Server configurator in Switch? If so, then it is necessary to set color management settings in the configurator itself. This is necessa...
by Padawan
Mon Sep 28, 2020 12:07 pm
Forum: LEGACY scripting
Topic: Switch Webhooks
Replies: 13
Views: 18305

Re: Switch Webhooks

I'm afraid it won't be that simple.

The easiest way to do a POST from a browser is to have a form.

If you want to do an automatic post when the page loads, then I think you'll need to have a javascript in a website which does the post for you.

What are you trying to achieve?
by Padawan
Sun Sep 27, 2020 8:56 am
Forum: LEGACY scripting
Topic: Switch Webhooks
Replies: 13
Views: 18305

Re: Switch Webhooks

When you open a url in a browser you will do a Get. If you want to do a post from a browser you will need to create a form.
by Padawan
Wed Sep 16, 2020 8:49 am
Forum: Node.js scripting
Topic: Writing a Dataset JSON
Replies: 2
Views: 3699

Re: Writing a Dataset JSON

Switch is only able to read XML (and XML derrivates) as dataset. Datasets from other formats are "just" a way to attach a file to a job, you can't read from it. There are some node js packages to convert json to xml, I think it is best if you use one of them and then store an XML dataset. ...