Search found 81 matches

by mkayyyy
Tue Dec 20, 2022 4:26 pm
Forum: Preflighting
Topic: Check bleed
Replies: 1
Views: 4355

Re: Check bleed

The PitStop Pro Action Manual has some explainations of what these options do: https://www.enfocus.com/manuals/Extra/Actions/22/home.html#en-us/common/act/concept/co_check_bleed.html Optionally you can enable the Mirror margins according to page binding checkbox and set a white threshold for white (...
by mkayyyy
Tue Dec 20, 2022 3:59 pm
Forum: LEGACY scripting
Topic: API GET from Submit Point
Replies: 9
Views: 13384

Re: API GET from Submit Point

The below Script expression work assuming you're Phoenix 8+. You will just need swap out the phoenixURL with the URL of your Phoenix instance API endpoint // Define Phoenix API URL variable var phoenixURL = "http://path-to-phoenix-api:8022/phoenix"; // Define HTTP client function function ...
by mkayyyy
Mon Dec 12, 2022 11:17 am
Forum: Flows
Topic: HTTP Request POST (body)
Replies: 6
Views: 4133

Re: HTTP Request POST (body)

I added the Create text file element, and have it generating a .json file. Then within the HTTP request element I have the Attached file set to: [Job.Path] When I run the flow, my MIS send back a 500 Internal Server Error and acts like it never received the body. I have this HTTP request successful...
by mkayyyy
Thu Dec 08, 2022 10:19 am
Forum: Flows
Topic: Individual time-out settings for every flow
Replies: 3
Views: 3356

Re: Individual time-out settings for every flow

+1 on this feature. It would be even better if you could configure a timeout optionally on a flow element level
by mkayyyy
Tue Nov 01, 2022 6:40 pm
Forum: Flows
Topic: HTTP Request POST (body)
Replies: 6
Views: 4133

Re: HTTP Request POST (body)

What if my "body" is not in a file but rather variables I am pulling from a dataset? An example of my body is below. { "JobNo": "[Metadata.Text:Dataset="job",Model="JSON",Path="/JobNo"]", "CustomerRef1": "123", "Cu...
by mkayyyy
Mon Apr 25, 2022 4:26 pm
Forum: PitStop Server
Topic: Pitstop server is not converting text to outline
Replies: 4
Views: 7095

Re: Pitstop server is not converting text to outline

In Switch there's two flow element properties on PitStop Server flow elements to control this functionality "Skip font license checks" and a dependant flow element property "I comply with the font license restrictions":

Image
by mkayyyy
Fri Apr 22, 2022 3:47 pm
Forum: PitStop Server
Topic: Pitstop server is not converting text to outline
Replies: 4
Views: 7095

Re: Pitstop server is not converting text to outline

When editing a hotfolder on the Fonts section there's a checkbox for "Skip font license checks", if you enable that PitStop Server will skip the license checks and allow you to convert fonts to outlines regardless of the licensing: https://i.gyazo.com/740dba4655e2d4e129774e8243e8d593.png T...
by mkayyyy
Thu Mar 31, 2022 9:46 am
Forum: Flows
Topic: Scheduled Flow Backup
Replies: 6
Views: 3000

Re: Scheduled Flow Backup

Either this app auto-save-plus or these flows github.com/open-automation/switch-flow-auto-backup can handle backing up flows. We use the latter with some custom scripts added to back up to AWS S3 every week We also use a modified version of that switch-flow-auto-backup flows, but unfortunately the ...
by mkayyyy
Thu Mar 31, 2022 9:25 am
Forum: Flows
Topic: Scheduled Flow Backup
Replies: 6
Views: 3000

Re: Scheduled Flow Backup

Either this app auto-save-plus or these flows github.com/open-automation/switch-flow-auto-backup can handle backing up flows. We use the latter with some custom scripts added to back up to AWS S3 every week
by mkayyyy
Thu Jan 06, 2022 10:14 am
Forum: Preflighting
Topic: Customising Preflight Report Message Variables
Replies: 3
Views: 7353

Re: Customising Preflight Report Message Variables

When you have the Customize Report Message window open, if you click the arrows on the bottom of the window it'll go through the different variations of the report messages that are available and you can edit each one to have a custom message: https://gyazo.com/ff345b98860cd6f8be0aa4b3d130249e For t...
by mkayyyy
Tue Jan 04, 2022 9:53 am
Forum: Node.js scripting
Topic: How to use flowElement.createJob to save a writeStream
Replies: 3
Views: 3887

Re: How to use flowElement.createJob to save a writeStream

You'll need to use a library like https://www.npmjs.com/package/tmp to create a temp file to write to Below is a code example: import * as tmp from "tmp"; import * as fs from "fs"; import axios from "axios"; async function jobArrived(s: Switch, flowElement: FlowElement,...
by mkayyyy
Mon Dec 20, 2021 5:34 pm
Forum: Flows
Topic: XPATH help for TextIndexed result
Replies: 4
Views: 6090

Re: XPATH help for TextIndexed result

Pretty sure this XPath will cover what you're wanting:

Code: Select all

//Page[./MediaBox/@width = 221.897]/@index
by mkayyyy
Wed Nov 24, 2021 9:36 am
Forum: Node.js scripting
Topic: XML property not assignable to DatasetModel
Replies: 2
Views: 2914

Re: XML property not assignable to DatasetModel

The createDataset method takes in an enumeration (https://www.enfocus.com/manuals/Develop ... model.html) for the model parameter.

That line should be:

Code: Select all

await xmlChildData.createDataset(xmlDataSetName, xmlTmpPath, DatasetModel.XML)
by mkayyyy
Fri Jul 30, 2021 10:31 am
Forum: Appstore
Topic: Beta testers for Get Messages app
Replies: 3
Views: 10522

Re: Beta testers for Get Messages app

Hi Jan, this app sounds very promising! I'm interested in testing it
by mkayyyy
Tue Jun 08, 2021 10:03 am
Forum: Flows
Topic: How to verify E-mail adress formatting?
Replies: 2
Views: 2797

Re: How to verify E-mail adress formatting?

https://www.enfocus.com/en/appstore/product/isvalid

This app may help, it has a Testing Type for Email