Search found 281 matches
- Tue Jul 28, 2015 9:15 am
- Forum: Preflighting
- Topic: Myriad Pro Italic Corruption
- Replies: 2
- Views: 8768
Re: Myriad Pro Italic Corruption
dkelly is correct, and you can probably avoid this problem in the future by using the check with the impossibly long name "Check if font contains all glyphs and metrics for all characters used". You may need to use an Action List for this - I didn't immediately find it in the Preflight Pro...
- Thu Jul 09, 2015 10:55 am
- Forum: Flows
- Topic: Adding JobState as suffix stopped working
- Replies: 2
- Views: 3233
Re: Adding JobState as suffix stopped working
Does the incoming job have strange characters in its filename?
Do I understand correctly that this is the standard rename (as in: not a script you wrote yourself)? If so, you should contact enfocus support so they can fix the script.
Do I understand correctly that this is the standard rename (as in: not a script you wrote yourself)? If so, you should contact enfocus support so they can fix the script.
- Tue Jun 09, 2015 8:56 am
- Forum: Applications
- Topic: Compatibility issue between Pitstop 12.3 and Adobe Acrobat Pro DC
- Replies: 2
- Views: 6468
Re: Compatibility issue between Pitstop 12.3 and Adobe Acrobat Pro DC
Hi Stephen,
PitStop Pro 12.3 should work with Acrobat DC. Please try reinstalling PitStop to see if that fixes the problem. If not, I'm sure Enfocus support can help you get to the bottom of this.
PitStop Pro 12.3 should work with Acrobat DC. Please try reinstalling PitStop to see if that fixes the problem. If not, I'm sure Enfocus support can help you get to the bottom of this.
- Thu Jun 04, 2015 2:38 pm
- Forum: Color Management
- Topic: Removal of CMYK plates from pdf
- Replies: 1
- Views: 12846
Re: Removal of CMYK plates from pdf
When you say the PDF includes "4 empty cmyk inks", do you mean Acrobat's output preview shows Cyan, Magenta, Yellow and Black in the list of Separations? If so, you can probably ignore that - Acrobat *always* shows those, even if there is no CMYK in the PDF. If you mean the PDF contains De...
- Tue Jun 02, 2015 4:50 pm
- Forum: PitStop Pro
- Topic: Pitstop multi page Copy & Paste
- Replies: 1
- Views: 6311
Re: Pitstop multi page Copy & Paste
You can create an Action List with "Add copied graphics". First you need to grab the object(s) you want to copy, then run the Action List on the complete document.
- Tue Jun 02, 2015 4:49 pm
- Forum: PitStop Pro
- Topic: duplicate layers
- Replies: 1
- Views: 6806
Re: duplicate layers
First a small caveat: layers in PDF are nothing like layers in Photoshop. (In fact, layers don't exist in PDF. It's very unfortunate that Acrobat (and many other applications, including PitStop) talk about "layers" when they should be talking about "Optional Content". But let's n...
- Tue Jun 02, 2015 3:43 pm
- Forum: Action Lists
- Topic: ICC RGB image to ICC CMYK image
- Replies: 1
- Views: 6580
Re: ICC RGB image to ICC CMYK image
If I understand correctly, you'll want something like this: Select images Select by tagged ICC profile AND Tag with ICC profile The last action will only change the ICC profile (with correct colour conversion of course) but not the colour space - for example it won't change RGB to CMYK. If you want ...
- Tue May 05, 2015 3:34 pm
- Forum: LEGACY scripting
- Topic: Date in UTC?
- Replies: 2
- Views: 5419
Re: Date in UTC?
I would suggest you reconsider the need for using UTC. There is no reliable way to know the last modification date of a file when working with different time zones and/or different file systems. At best you'll get correct results only when working on a single system, at worst you'll get completely u...
- Tue May 05, 2015 2:57 pm
- Forum: LEGACY scripting
- Topic: file is not a valid pdf file
- Replies: 2
- Views: 4296
Re: file is not a valid pdf file
var theFileName = job.getNameProper() //... job.sendToSingle( inputJob, theFileName ); The function getNameProper() returns the filename without extension (and without unique ID). So, if your incoming file is "file.pdf", then theFileName will be "file". The second parameter in j...
- Tue Apr 21, 2015 10:06 am
- Forum: Action Lists
- Topic: Check for color
- Replies: 1
- Views: 6690
Re: Check for color
See my reply at http://forum.enfocus.com/viewtopic.php?f=6&t=753
- Tue Apr 21, 2015 10:03 am
- Forum: Preflighting
- Topic: Check for color
- Replies: 1
- Views: 7375
Re: Check for color
There are probably several ways to do this, but the most flexible will be with an Action List. The checks for RGB and Lab can be done with a simple "Check color type". The check for CMY is a bit more complex - but don't worry it's not that hard to understand. We're going to use a combinati...
- Mon Mar 30, 2015 9:30 am
- Forum: Flows
- Topic: Need the last 5 character of the file name
- Replies: 2
- Views: 6551
Re: Need the last 5 character of the file name
If you have the scripting module you can use a simple script expression:
If you don't have the scripting module you can do it with variables, but only if the name is always the same length:
[Job.NameProper:Segment="6,10"]
Code: Select all
job.getNameProper().right(5);
[Job.NameProper:Segment="6,10"]
- Fri Mar 27, 2015 10:50 am
- Forum: LEGACY scripting
- Topic: Acrobat script // Need help
- Replies: 3
- Views: 8649
Re: Acrobat script // Need help
Unfortunately you cannot test Adobe scripts in SwitchScripter. You'll have to create a simple flow in Switch and test it there.
- Fri Mar 27, 2015 10:49 am
- Forum: Flows
- Topic: Run length calculation
- Replies: 15
- Views: 26925
Re: Run length calculation
There should be quotes around the xslt paths, theRunLength should be declared outside of the if, and the job has to be sent to the outgoing connection(s). If you don't tell Switch that the job should be sent along the flow, it will stay in the input folder forever. function jobArrived( s : Switch, j...
- Fri Mar 27, 2015 9:41 am
- Forum: LEGACY scripting
- Topic: Acrobat script // Need help
- Replies: 3
- Views: 8649
Re: Acrobat script // Need help
Some details depend on how you are trying to use this script. I will assume it's used in one of the properties of the Acrobat element in a Switch flow. First, get rid of the "<script type="text/javascript">" and "<script>" tags. Those are html tags, but Switch and Acrob...