Search found 15 matches

by manupapet
Fri Nov 07, 2014 7:52 pm
Forum: Flows
Topic: Sorting Files by Trimbox Size
Replies: 7
Views: 5366

Sorting Files by Trimbox Size

Hi, You don't write the good syntax. It's : [Stats.TrimBoxHeight:Precision=0] > 297 But 297 it's bad because the unit is point and not mm. Change settings acrobat unit in point and read the width or height. Preicion is the number after the comma, example : precision="1" : 1,2 precision=&qu...
by manupapet
Fri Aug 01, 2014 7:33 pm
Forum: Flows
Topic: How to use Chili with Switch
Replies: 11
Views: 6392

How to use Chili with Switch

Thank you to your help. dkelly wrote: OK, the CSV2XML script created 467 XML files each containing a single record. <?xml version="1.0" encoding="UTF-8"?> <order> <PRENOM>SAS</PRENOM> <NOM>NATURHOUSE</NOM> <ADR>82 avenue Camille Pujol</ADR> <CP>31500</CP> <VILLE>TOULOUSE</VILLE> ...
by manupapet
Fri Aug 01, 2014 5:23 pm
Forum: Flows
Topic: How to use Chili with Switch
Replies: 11
Views: 6392

How to use Chili with Switch

Here a link : spreadsheet

http://we.tl/2oPcu5WfGG

Thank you



dkelly wrote: I'd be happy to. Please send me a copy of your spreadsheet and I'll convert it for you.



Dwight Kelly

dkelly@apago.com
by manupapet
Fri Aug 01, 2014 7:16 am
Forum: Flows
Topic: How to use Chili with Switch
Replies: 11
Views: 6392

How to use Chili with Switch

Hello dkelly,



Could you send me an example xml file please



Thank you



dkelly wrote: With a script I wrote for convert CSV files to XML you could do something like:



by manupapet
Thu Jul 31, 2014 8:21 pm
Forum: Flows
Topic: How to use Chili with Switch
Replies: 11
Views: 6392

How to use Chili with Switch

Yes, I pass each rows of the excel preadsheet to chili variable. I don't know that switch don't support excel file. So, I try another idea. thank you dkelly wrote: I assume you want to pass each row of the Excel spreadsheet to CHILI as a variable? Switch can't process an Excel spreadsheet or even a ...
by manupapet
Thu Jul 31, 2014 7:45 pm
Forum: Flows
Topic: How to use Chili with Switch
Replies: 11
Views: 6392

How to use Chili with Switch

Hello, I have a card visit template on chili server and an excel file. When a drag an drop an excel file, i want switch generate pdf a file by line. I don't find exemple on goole, website enfocus or chili publish. Could you give me an example. Thank you dkelly wrote: I have lots of experience with C...
by manupapet
Thu Jul 31, 2014 7:49 am
Forum: Flows
Topic: How to use Chili with Switch
Replies: 11
Views: 6392

How to use Chili with Switch

Hello,



I'm trying to use Chili Publish with Switch but it don't work.

I can't find any examples of it anywhere or documentation.



Does anyone have any examples ?



Thank you



Manu
by manupapet
Sun Sep 15, 2013 6:57 pm
Forum: Preflighting
Topic: How to see if there is graphics in bleed area
Replies: 2
Views: 2924

How to see if there is graphics in bleed area

Hi,



I think you use pitstop.

In your pitstop script add an other script before named "Set Trim and Bleed Box to Marks". You can download this script on enfocus website.



Manu
by manupapet
Mon Feb 18, 2013 8:11 am
Forum: Flows
Topic: How to maintain or restablish connectivity from Switch to HP/Indigo press
Replies: 7
Views: 4732

How to maintain or restablish connectivity from Switch to HP/Indigo press

Hi Roger, Sorry i don't see, it's mac switch. Perhaps problem with enfocus and afp/smb network. A solution maybe connect your HP volume in your switch flow with 1. applescript : for example i find this in http://hints.macworld.com forum : tell application "Terminal" activate do script ¬ &q...
by manupapet
Sun Feb 17, 2013 5:45 pm
Forum: Flows
Topic: How to maintain or restablish connectivity from Switch to HP/Indigo press
Replies: 7
Views: 4732

How to maintain or restablish connectivity from Switch to HP/Indigo press

Hi Roger,



Don't use mount volume but use absolute path in switch, for example :

HP_IndigoHotfolderIn



Sincerly yours

Emmanuel
by manupapet
Thu Feb 14, 2013 12:39 pm
Forum: Flows
Topic: Problems with hotfolders on Helios servers?
Replies: 6
Views: 4466

Problems with hotfolders on Helios servers?

Hi,



Could you send me your flow, i test at my home ?

manupapet@yahoo.fr



Emmanuel
by manupapet
Thu Feb 14, 2013 7:42 am
Forum: Flows
Topic: Problems with hotfolders on Helios servers?
Replies: 6
Views: 4466

Problems with hotfolders on Helios servers?

Hi Patrik,



Perhaps a problem with you switch flow. Do you include the folder "problem jobs" in your flow ?



Do you have error message in switch message ?



Can you change the Hotfolders to another server ?





Emmanuel
by manupapet
Tue Feb 12, 2013 12:57 pm
Forum: Flows
Topic: Problems with hotfolders on Helios servers?
Replies: 6
Views: 4466

Problems with hotfolders on Helios servers?

Hi, I use Enfocus Switch with Hotfolder on MAC Helios, i had the same problem to you. I have made my flow with network map letter (for example : x/FolderIn), no error when I made my flow but not working in excecute mode. I solve this problem with 2 things : 1. I had use absolute path network : for e...
by manupapet
Mon Feb 11, 2013 8:18 am
Forum: Flows
Topic: Sort file at 12:00
Replies: 4
Views: 2922

Sort file at 12:00

Hi, I has same problem and i make this : - on windows : with "Task Sheduler" in administrative tools, you lanch this task at 12h00 on a file "move.bat" for example. And fhis file "move.bat" content : "move c:/FolerIn/*.pdf c:/FolderOut/". - on mac : with a cro...
by manupapet
Wed Mar 14, 2012 1:03 am
Forum: PDF Creation
Topic: Get integer from metadata variable
Replies: 4
Views: 10801

Get integer from metadata variable

Hello, i have make the same thing of you without PDFSpy but with the function stats : function convert() { var TBWpt = job.getVariableAsNumber( "[Stats.TrimBoxWidth]" ); var TBHpt = job.getVariableAsNumber( "[Stats.TrimBoxHeight]" ); var TBWmm = Math.round( TBWpt * 0.35277 ).toSt...