Search found 57 matches

by tdeschampsBluewest
Tue Jul 23, 2024 10:37 am
Forum: Preflighting
Topic: "Regex Help: How to Extract First PANTONE Color Before Semicolon in Switch
Replies: 4
Views: 354

Re: "Regex Help: How to Extract First PANTONE Color Before Semicolon in Switch

You could also use the app string splitter if you want to access other index of the list with ease.
by tdeschampsBluewest
Tue Jul 16, 2024 12:09 pm
Forum: Flows
Topic: Flowing job along a split path due to subfolder prescence
Replies: 6
Views: 496

Re: Flowing job along a split path due to subfolder prescence

Hi there, If i understand well, IF there is a file with a hierarchy "fail", you want to grab the whole folder and do "something" with it? If so, you should archive the "failed" file and output the result using success outgoing connection. Test like you did the if the hi...
by tdeschampsBluewest
Fri Jul 12, 2024 9:08 am
Forum: Action Lists
Topic: Place rotated text
Replies: 6
Views: 1234

Re: Place rotated text

Sometimes rotating an object with good positioning could be painful, so alternatively, you could rotate your page, position your text, then rotate-back your page.
by tdeschampsBluewest
Fri Jul 12, 2024 9:07 am
Forum: Flows
Topic: High CPU spikes
Replies: 3
Views: 604

Re: High CPU spikes

I could suggest you using a "deadman switch" to be alerted if there is a problem happening. Just in case you are not familiar with this technic : A dead man's switch is a switch that is designed to be activated or deactivated if the human operator becomes incapacitated, such as through dea...
by tdeschampsBluewest
Fri Jul 12, 2024 8:54 am
Forum: Flows
Topic: Problems with HTTP Request
Replies: 6
Views: 975

Re: Problems with HTTP Request

One other fix to consider could be to set the flow in advanced mode, and limit the number of concurrent task within the element itself. If the problem is tied to a single element handling multiple download at once, and you still want to use multiple thread, it's worth the try to add a hold job befor...
by tdeschampsBluewest
Thu Jul 11, 2024 5:17 pm
Forum: Preflighting
Topic: Pitstop Server skipping pages on XML Report?
Replies: 12
Views: 1439

Re: Pitstop Server skipping pages on XML Report?

[/quote] I actually don't know what you mean by page label. [/quote] Page number can differ from page label. The index, is the position as an integer, the label is a string, In most case, page label = page index, but in some case if you added label to your pages, and remove some pages, the labels ca...
by tdeschampsBluewest
Tue Jul 09, 2024 9:20 am
Forum: PitStop Pro
Topic: Hidden layers
Replies: 1
Views: 492

Re: Hidden layers

You have an action : "Select layer by visibility"

Then you'll be able to report things in it (or the lack of object if needed)
by tdeschampsBluewest
Tue Jul 09, 2024 9:10 am
Forum: Preflighting
Topic: Pitstop Server skipping pages on XML Report?
Replies: 12
Views: 1439

Re: Pitstop Server skipping pages on XML Report?

Could it be the label of the page in the report instead of the page number?
Do you have a missing ones in your label names?
by tdeschampsBluewest
Fri Jun 28, 2024 10:03 am
Forum: Flows
Topic: Change flow parameters directly in flow XML?
Replies: 14
Views: 1805

Re: Change flow parameters directly in flow XML?

Hi there, Global data could work great, one flow creating global, and other flow restoring it before use! But as we talked about it together recently, having a property directly in switch to have something like this could be a real game changer for some flow conception: [Switch.GlobalData.text:name=...
by tdeschampsBluewest
Fri Jun 28, 2024 9:55 am
Forum: Flows
Topic: What would be the ideal way to input jobs through Switch's API?
Replies: 8
Views: 666

Re: What would be the ideal way to input jobs through Switch's API?

Note that Webhook with switch have a body size limitation, you won't be able to send PDF with it (1Mb). If so, you'll need to use a json line/tag with the URL of the file, and a HTTP request to grab it later. If you want to tinker with your switch, without exposing it, you can use proxy like Nginx P...
by tdeschampsBluewest
Tue Jun 25, 2024 2:36 pm
Forum: Flows
Topic: Trying to remove underscore at the end of a filename.
Replies: 3
Views: 306

Re: Trying to remove underscore at the end of a filename.

You should also make it recursive, to remove multiple underscore at the end, just in case :).
by tdeschampsBluewest
Fri Jun 21, 2024 5:22 pm
Forum: Switch
Topic: "No outgoing connection accepts this job" Error
Replies: 3
Views: 519

Re: "No outgoing connection accepts this job" Error

The fail message is pretty self explanatory : for the given flow element (a folder) no outgoing connection accept this job. That mean you have created some condition/filters on the outgoing connections, and this file does not match any of those conditions. You may have to create an outgoing connecti...
by tdeschampsBluewest
Fri Jun 14, 2024 9:42 am
Forum: Switch
Topic: Switch Backup without Scripting
Replies: 4
Views: 15555

Re: Switch Backup without Scripting

Hi, The solution of Cedric sintes is also in an APP "autosave plus", sadly in legacy, so it may disappear in a near future, or have some compatibility problem when the support for legacy will end. I may redevelopp it in typescript for the appstore, and i think we may put it for free, but i...
by tdeschampsBluewest
Wed Jun 12, 2024 2:02 pm
Forum: Flows
Topic: Flow to check if other flows are running
Replies: 5
Views: 563

Re: Flow to check if other flows are running

Hi there!
Checkup app developer here :).
If you have any question, or feature that you want to be implemented in the app, do not hesitate to contact us directly trough appstore@bluewest.fr :)
by tdeschampsBluewest
Thu Jun 06, 2024 9:20 pm
Forum: Flows
Topic: Convert to postscript without opening dialog window?
Replies: 9
Views: 792

Re: Convert to postscript without opening dialog window?

You went for a really complicated way to do it! If you have scripting module, and want to execute CLI, i suggest you to create a script element, and to use "cross spawn" library If you want to use Execute command, it can be sometime tricky, but i think this parameter should work (not in fr...