Search found 658 matches

by dkelly
Mon Jul 31, 2017 5:09 pm
Forum: Flows
Topic: Remove prefix on Execute command
Replies: 5
Views: 6238

Re: Remove prefix on Execute command

You will have to rename the file prior to passing it to the upload program. Since you are using the Execute Command element you'll have to create a wrapper script/batch file to rename the file, call upload program and then rename it back. Or you could copy file to another location, upload and then d...
by dkelly
Thu Jul 20, 2017 7:11 pm
Forum: LEGACY scripting
Topic: Depreciated ByteArray function in Switch 2017 update 2
Replies: 4
Views: 7016

Depreciated ByteArray function in Switch 2017 update 2

The ByteArray function generateSignature( privateKeyPath : String ) was "depreciated" by Enfocus in Switch 2017 Update 2. Normally depreciated means it is no longer recommend to be used and will be removed in future updates. However, in this case it means Enfocus removed the function entir...
by dkelly
Thu Jul 13, 2017 11:34 pm
Forum: LEGACY scripting
Topic: Switch Javascript and Advanced Concepts class @ Print 17
Replies: 9
Views: 13676

Re: Switch Javascript and Advanced Concepts class @ Print 17

mclarke wrote:I'm in. Request sent to my boss. Please let us know the selected day as soon as possible. I won't be at Print 17 for the entire four days and need to make sure my travel doesn't impact class attendance.
Hello, the class is scheduled for Tuesday, Sept 12, 2017
by dkelly
Mon Jul 03, 2017 4:26 pm
Forum: LEGACY scripting
Topic: Switch Javascript and Advanced Concepts class @ Print 17
Replies: 9
Views: 13676

Switch Javascript and Advanced Concepts class @ Print 17

Apago will be holding a one day hands-on seminar on Javascript and advanced concepts with XML, SQL during Print 17 in Chicago. We had great feedback from last 4 seminars and will be incorporating more hands-on exercises. Bring your list of questions and requirements and we will work through them. Da...
by dkelly
Mon Sep 19, 2016 5:09 pm
Forum: LEGACY scripting
Topic: Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016
Replies: 1
Views: 3442

Re: Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016

There are still a few seats available for this class. Get more out of Switch by learning scripting!
by dkelly
Thu Sep 08, 2016 1:10 am
Forum: Flows
Topic: Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016
Replies: 0
Views: 4160

Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016

Apago will be holding a one day hands-on seminar on advanced scripting concepts with XML, SQL and Javascript during Graph Expo 2015. We had great feedback from last two seminars and will be incorporating more hands-on exercises. Bring your list of questions and requirements and we will work through ...
by dkelly
Thu Sep 08, 2016 1:09 am
Forum: LEGACY scripting
Topic: Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016
Replies: 1
Views: 3442

Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016

Apago will be holding a one day hands-on seminar on advanced scripting concepts with XML, SQL and Javascript during Graph Expo 2016. We had great feedback from last two seminars and will be incorporating more hands-on exercises. Bring your list of questions and requirements and we will work through ...
by dkelly
Thu Dec 31, 2015 3:17 pm
Forum: PDF Creation
Topic: Save optimized
Replies: 2
Views: 7604

Re: Save optimized

You will have to write an Acrobat Javascript to call that menu item or the built-in preflight.

Other options are Enfocus Pitstop Server, Apago PDF Enhancer and callas pdfToolBox.
by dkelly
Tue Dec 22, 2015 5:44 pm
Forum: LEGACY scripting
Topic: reading barcodes within a PDF
Replies: 2
Views: 3801

Re: reading barcodes within a PDF

gabrielp wrote:I would also like to know how to work with barcodes within a PDF.
Apago has a solution for locating and decoding barcodes in image and PDF for Switch. The configurator returns the location, type and decoded data from the barcode(s).
by dkelly
Wed Dec 02, 2015 9:58 pm
Forum: Preflighting
Topic: Barcode text
Replies: 3
Views: 7681

Re: Barcode text

Apago has a Switch configurator for locating and reading barcodes in PDF and images files.
by dkelly
Tue Oct 13, 2015 3:30 pm
Forum: PDF Creation
Topic: PDF thumbnails
Replies: 1
Views: 5578

Re: PDF thumbnails

Ghostscript, an open source Postscript and PDF RIP, or a commercial RIP such as Apago's PSServices
by dkelly
Mon Oct 12, 2015 11:24 pm
Forum: Flows
Topic: xml data & HP digital front end JDF Control
Replies: 7
Views: 13898

Re: xml data & HP digital front end JDF Control

yes, Switch 13 has a Saxon configurator built-in
by dkelly
Mon Oct 12, 2015 11:22 pm
Forum: LEGACY scripting
Topic: Problem when moving files to other hotfolders from Switch
Replies: 10
Views: 27421

Re: Problem when moving files to other hotfolders from Switch

or change

Code: Select all

 args.push("cp");
to

Code: Select all

args.push( s.isWindows() ? "move" : "cp");
by dkelly
Thu Oct 08, 2015 11:36 pm
Forum: LEGACY scripting
Topic: SwitchClient, ODBC and Parent Value
Replies: 15
Views: 23031

Re: SwitchClient, ODBC and Parent Value

Unfortunately SwitchClient does not allow one field to access the value of another, including its parent.