Search found 628 matches
- Mon Jul 31, 2017 5:09 pm
- Forum: Flows
- Topic: Remove prefix on Execute command
- Replies: 5
- Views: 45231
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...
- Mon Jul 31, 2017 5:00 pm
- Forum: Scripting
- Topic: Switch Javascript and Advanced Concepts class @ Print 17
- Replies: 7
- Views: 24642
Re: Switch Javascript and Advanced Concepts class @ Print 17
Online registration is now up - www.brownpapertickets.com/event/3053177
- Thu Jul 20, 2017 7:11 pm
- Forum: Scripting
- Topic: Depreciated ByteArray function in Switch 2017 update 2
- Replies: 1
- Views: 12066
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...
- Thu Jul 13, 2017 11:34 pm
- Forum: Scripting
- Topic: Switch Javascript and Advanced Concepts class @ Print 17
- Replies: 7
- Views: 24642
Re: Switch Javascript and Advanced Concepts class @ Print 17
Hello, the class is scheduled for Tuesday, Sept 12, 2017mclarke 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.
- Mon Jul 03, 2017 4:26 pm
- Forum: Scripting
- Topic: Switch Javascript and Advanced Concepts class @ Print 17
- Replies: 7
- Views: 24642
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...
- Mon Sep 19, 2016 5:09 pm
- Forum: Scripting
- Topic: Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016
- Replies: 1
- Views: 3542
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!
- 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: 33945
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 ...
- Thu Sep 08, 2016 1:09 am
- Forum: Scripting
- Topic: Advanced Enfocus Switch concepts with scripting, XML, SQL and Javascript seminar @ Graph Expo 2016
- Replies: 1
- Views: 3542
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 ...
- Thu Dec 31, 2015 3:17 pm
- Forum: PDF Creation
- Topic: Save optimized
- Replies: 2
- Views: 14419
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.
Other options are Enfocus Pitstop Server, Apago PDF Enhancer and callas pdfToolBox.
- Tue Dec 22, 2015 5:44 pm
- Forum: Scripting
- Topic: reading barcodes within a PDF
- Replies: 3
- Views: 4503
Re: reading 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).gabrielp wrote:I would also like to know how to work with barcodes within a PDF.
- Wed Dec 02, 2015 9:58 pm
- Forum: Preflighting
- Topic: Barcode text
- Replies: 3
- Views: 4186
Re: Barcode text
Apago has a Switch configurator for locating and reading barcodes in PDF and images files.
- Tue Oct 13, 2015 3:30 pm
- Forum: PDF Creation
- Topic: PDF thumbnails
- Replies: 1
- Views: 13880
Re: PDF thumbnails
Ghostscript, an open source Postscript and PDF RIP, or a commercial RIP such as Apago's PSServices
- Mon Oct 12, 2015 11:24 pm
- Forum: Flows
- Topic: xml data & HP digital front end JDF Control
- Replies: 9
- Views: 7636
Re: xml data & HP digital front end JDF Control
yes, Switch 13 has a Saxon configurator built-in
- Mon Oct 12, 2015 11:22 pm
- Forum: Scripting
- Topic: Problem when moving files to other hotfolders from Switch
- Replies: 10
- Views: 25061
Re: Problem when moving files to other hotfolders from Switch
or change
to
Code: Select all
args.push("cp");
Code: Select all
args.push( s.isWindows() ? "move" : "cp");
- Thu Oct 08, 2015 11:36 pm
- Forum: Scripting
- Topic: SwitchClient, ODBC and Parent Value
- Replies: 11
- Views: 7110
Re: SwitchClient, ODBC and Parent Value
Unfortunately SwitchClient does not allow one field to access the value of another, including its parent.