Search found 12 matches

by ckuhlmann
Fri Jul 07, 2017 10:39 pm
Forum: Flows
Topic: web hooks? MS Teams
Replies: 4
Views: 8324

Re: web hooks? MS Teams

Thank you Both,

I was able to make a script do what I needed, but I want to give the script expression a try. And your script is much more elegant than mine ;)
by ckuhlmann
Thu Jul 06, 2017 9:18 pm
Forum: Flows
Topic: web hooks? MS Teams
Replies: 4
Views: 8324

web hooks? MS Teams

Hi all, Has anyone worked with sending notices out to applications like Slack or MS Teams? I was looking to use HTTP Request to post an error message to a group channel. But it seems you can only post a file, where I just want to post a simple json string. example: { "@context": "http...
by ckuhlmann
Fri Dec 30, 2016 10:01 pm
Forum: Flows
Topic: Hold until output is found
Replies: 2
Views: 4029

Hold until output is found

Hello All, I have been trying to find the best way to handle a problem. I use HP composer to handle my VDP impostions. My flow takes the data file, submits a copy to the composer hot folder to generate the pdf, another copy goes to hold where it waits for the output to be found. Once found I replace...
by ckuhlmann
Fri Feb 12, 2016 12:06 am
Forum: Flows
Topic: check if file exists
Replies: 2
Views: 2906

Re: check if file exists

Figured it out:

function getFileStatus() : string {

var fPath = full path to file including file name';

var fa = new File(fPath);

if ( fa.exists ){
return true;
}
else{
return false;
}
}
getFileStatus();
by ckuhlmann
Thu Feb 11, 2016 3:44 am
Forum: Flows
Topic: check if file exists
Replies: 2
Views: 2906

check if file exists

Hello All,

Is it possible to check if a file exists in a repository before injecting it.

I have a hold node that I want to be conditionally released to the inject file node if the specific file to inject is available.

Thanks
by ckuhlmann
Sat Feb 06, 2016 12:55 am
Forum: Flows
Topic: HP Digital Front End JDF Control Configurator Sending MIME
Replies: 3
Views: 3499

Re: HP Digital Front End JDF Control Configurator Sending MIME

This was the solution and also updating the configurator to version 9.

At first it did not work, but when all else fails - reboot. And its off and running.

Thnaks
by ckuhlmann
Fri Feb 05, 2016 8:34 pm
Forum: Flows
Topic: HP Digital Front End JDF Control Configurator Sending MIME
Replies: 3
Views: 3499

HP Digital Front End JDF Control Configurator Sending MIME

Hi All, I'm having a hard time with sending JDF's forward as a Mime Package. Bellow you'll find the errors I'm getting. Has anyone experienced this before? Im running Switch13 and HP Digital Front End JDF Control (version 8) Failed to run external process: java -Dlog4j.configuration=file:\C:\Program...
by ckuhlmann
Wed Oct 28, 2015 8:16 pm
Forum: Flows
Topic: Switch 13, Adobe CC 2015 and SmartStream for CC 2015
Replies: 3
Views: 4117

Re: Switch 13, Adobe CC 2015 and SmartStream for CC 2015

I am facing the exact same issue. I have done both step one and two but still have blank library for paper size. Any help would be appreciated!
by ckuhlmann
Wed Sep 30, 2015 1:20 am
Forum: Flows
Topic: Duplicate Pages
Replies: 1
Views: 2654

Duplicate Pages

Hello,

I am trying to takes page 1 and 2 of a multipage document of any size and duplicates them then reinsert them ? I was looking at doing this as an pitstop action but member suggested I do it through switch instead.

example:

1 2 3 4 5 6

to

1 2 1 2 3 4 5 6

any help is appreciated.
by ckuhlmann
Wed Sep 30, 2015 1:01 am
Forum: PitStop Pro
Topic: How to Duplicate Pages?
Replies: 5
Views: 9242

Re: How to Duplicate Pages?

Yeah I will be running through switch.
by ckuhlmann
Mon Sep 28, 2015 8:57 pm
Forum: PitStop Pro
Topic: How to Duplicate Pages?
Replies: 5
Views: 9242

How to Duplicate Pages?

Hello,

Is it possible to have an action that takes page 1 and 2 and duplicates them? I though I figured it out with "add pages" but it requires you to pick a secondary pdf.

example:

1 2 3 4 5 6

to

1 2 1 2 3 4 5 6
by ckuhlmann
Thu Apr 02, 2015 9:09 pm
Forum: Flows
Topic: new flow compress pdf and report together
Replies: 1
Views: 2338

new flow compress pdf and report together

Hello, I am just starting out learning this wonderful tool. But my lack of knowledge has brought me to this community for some help. I am making a flow that receives a pdf via mail and its whole goal is to send back to the user with a report of issues we foresee with there file and the pdf split int...