Search found 20 matches

by mkis
Wed Oct 19, 2016 3:06 pm
Forum: Connect ALL / SEND
Topic: Acrobat Signature Warning when preflighting PDF
Replies: 2
Views: 12357

Re: Acrobat Signature Warning when preflighting PDF

Hi there,

the solution from enfocus is to remove the certified PDF status with an action list
by mkis
Tue Oct 18, 2016 4:47 pm
Forum: Connect ALL / SEND
Topic: Acrobat Signature Warning when preflighting PDF
Replies: 2
Views: 12357

Acrobat Signature Warning when preflighting PDF

Hello to all, maybe somebody can help me with that. In the resulting PDF from Enfocus Connect All, Acrobat shows an signature warning. The Problem is solved for the PitStop Server https://www.enfocus.com/en/support/known-issues-and-solutions#/SupportPortalSolution?id=501D0000000jfcvIAA Is there a so...
by mkis
Fri Aug 19, 2016 3:29 pm
Forum: Connect ALL / SEND
Topic: HTML Form, variables not available
Replies: 1
Views: 11906

HTML Form, variables not available

Hello, we use Connect ALL 13.u3 Win. I tried the new html form feature and created a html form as described in the help <html><head></head> <body> <form method="post"> <input type="text" name="field1" placeholder="Your Name" /> </br> <input type="email&qu...
by mkis
Thu Aug 04, 2016 4:42 pm
Forum: Scripting
Topic: Photoshop Script SaveAs Original
Replies: 3
Views: 2008

Re: Photoshop Script SaveAs Original

Freddy, you're right, it seems the documentation ist not up to date... But I needed a .saveAs function, the .save won't work. This code works now! var myDoc = $doc; var $outfiles= []; try { var $outfile = new File($outfolder + '/' + $filename + "." + $extension); myDoc.saveAs($outfile); $o...
by mkis
Thu Aug 04, 2016 3:59 pm
Forum: Scripting
Topic: Photoshop Script SaveAs Original
Replies: 3
Views: 2008

Re: Photoshop Script SaveAs Original

Hi Freddy, thanks for your reply. some parts of this script are from the Switch documentation "JavaScript for Applications" http://www.enfocus.com/manuals/UserGuide/SW/13/home.html $outfiles -> If your script is attached to a "save" action, it should set the contents of this arra...
by mkis
Thu Aug 04, 2016 11:20 am
Forum: Scripting
Topic: Photoshop Script SaveAs Original
Replies: 3
Views: 2008

Photoshop Script SaveAs Original

Hello, I have a problem with a photoshop script in the switch photoshop configurator. I've included a script in the save method to save the image in the same file format as it comes in. There is no other script or action selected. When the script is executed the log says "Job processing success...
by mkis
Mon Mar 07, 2016 11:17 am
Forum: Flows
Topic: Folder hierarchy
Replies: 3
Views: 1842

Re: Folder hierarchy

Hello, this is the final code, I use now, if someone need it. You can call a function from every subfolder inside a jobfolder function jobArrived( s : Switch, job : Job ) { readDir(job, job.getPath()); } function readDir(job, path){ var dir = new Dir( path ), allDirs = dir.entryList("*", D...
by mkis
Fri Mar 04, 2016 11:10 am
Forum: Flows
Topic: Folder hierarchy
Replies: 3
Views: 1842

Re: Folder hierarchy

Gabriel, thanks for your reply. The MAM is our Media Asset Management, where we store all out productionfiles in libraries and jobs There is a SOAP API to this system and an import hotfolder, that needs a textfile for importing data. Via SOAP (started from a Switch Script), the jobticket in the MAM ...
by mkis
Thu Mar 03, 2016 12:06 pm
Forum: Flows
Topic: Folder hierarchy
Replies: 3
Views: 1842

Folder hierarchy

Hello everybody, could someone help me with a hierarchy problem? I'll try to describe the situation: We use a MAM for working on our jobs and storing them in the MAM database We need to import files into the MAM-jobs via SOAP and a hotfolder. What I get is a folder named as the jobnumber, and variou...
by mkis
Thu Nov 20, 2014 1:44 pm
Forum: Applications
Topic: InDesign and Universal Type Server
Replies: 1
Views: 2087

InDesign and Universal Type Server

Hello everybody, I have a problem with the InDesign CS6 configurator and the Universal Type Client in Switch. The flow in switch should make a PDF from an InDesign Doc. The UTC PlugIn in ID is activating the missing fonts, but the out fails, because switch means there are missing fonts. Does someone...
by mkis
Mon Sep 15, 2014 1:39 pm
Forum: Applications
Topic: InDesign Server Configurator issue
Replies: 3
Views: 2861

InDesign Server Configurator issue

Hello, we have the same problem, after a period of running, InDesign and Photohop are not responsing any more. You'll have to bring them to front by manually clicking on the doc icon and then they are running again. We use switch 12u2 on MaxOSX 10.9.x Is that problem known by enfocus? Best regards, ...
by mkis
Thu Jan 02, 2014 4:11 pm
Forum: Scripting
Topic: XML and CDATA
Replies: 2
Views: 1218

XML and CDATA

Hi dkelly,



thanks that works for me!



Michael
by mkis
Thu Jan 03, 2013 10:41 am
Forum: Flows
Topic: Split PDF Filename
Replies: 2
Views: 2029

Split PDF Filename

Thanks,



I've used the Regex Search



_(?=d{1,1}$)



and Replace by



_0



in the rename element.



But it would be nice to have an option in the PDF Splitter for that...



Michael
by mkis
Wed Jan 02, 2013 1:04 pm
Forum: Flows
Topic: Split PDF Filename
Replies: 2
Views: 2029

Split PDF Filename

Hello, I've got a simple question about the "Split PDF" -Element. Is it possible to set the index with a leading zero, if the number of pages is smaller than 10 pages? E.g. filename.pdf -> filename_1.pdf if the document has only 4 pages, but it should be filename_01.pdf Or do I have to wri...
by mkis
Mon Dec 03, 2012 5:07 pm
Forum: Applications
Topic: PDF to JPEG with ImageMagick and Ghostscript
Replies: 10
Views: 28904

PDF to JPEG with ImageMagick and Ghostscript

Hi Robert, thanks for your answer, this gives me a temporary solution for my problem. I'll use your direkt command for PDF Files now, thanks! With ImageMagick I'm using Arguments: "%1" -compress JPEG -quality 99 "%2" The rest as for Ghostscript... Regards, Michael