Search found 298 matches

by Terkelsen
Fri Mar 18, 2016 12:23 pm
Forum: Color Management
Topic: Colour separation
Replies: 6
Views: 17421

Re: Colour separation

If I understand you correct, you want to remove everything except the black AND the white text?

In that case you will need something like this:

Select all
Select text segments
Select Fill Color (Text Black)
AND
Select Fill Color (Text White)
OR
NOT
Remove selection
by Terkelsen
Fri Mar 18, 2016 8:28 am
Forum: Color Management
Topic: Colour separation
Replies: 6
Views: 17421

Re: Colour separation

If you are able to select your "Text black" you could delete everything else with an action like this:

Select all
Select Text Black
NOT
Remove selection
by Terkelsen
Tue Mar 15, 2016 11:57 am
Forum: PitStop Pro
Topic: Detect thin, white fonts
Replies: 2
Views: 3778

Re: Detect thin, white fonts

If anybody want to know, I have now learned (from Andrew :-)) that the correct RegEx should look like this:

.*Thin.*
by Terkelsen
Tue Mar 15, 2016 10:44 am
Forum: PitStop Pro
Topic: Remove a line of copy on every page of the pdf
Replies: 4
Views: 6113

Re: Remove a line of copy on every page of the pdf

In that case you should be able to use an action like this: Select all Select text segments Split in words Select text by key phrase (Type in the exact text to be removed) Remove selection If you don't split in words all text containing the phrase you type in, will be removed. If you don't want to s...
by Terkelsen
Mon Mar 14, 2016 3:51 pm
Forum: PitStop Pro
Topic: Remove a line of copy on every page of the pdf
Replies: 4
Views: 6113

Re: Remove a line of copy on every page of the pdf

Could you explain a little more about this "line of copy"? Is it text, vector or bitmap? Is it in the same place and/or in equal size on each page?
by Terkelsen
Thu Mar 10, 2016 2:27 pm
Forum: PitStop Pro
Topic: Detect thin, white fonts
Replies: 2
Views: 3778

Detect thin, white fonts

I'm looking for a way to detect thin, white text in a PDF. I have tried to make a restriction in a preflight to look only for fonts that has Thin or Light in their fontname and have white fill. Using a very simple RegEx like this ".dThin" would find ec. ProximaNova-ThinIT if I test this in...
by Terkelsen
Tue Mar 08, 2016 9:54 am
Forum: Flows
Topic: Using ImageMagick with Switch
Replies: 4
Views: 19567

Re: Using ImageMagick with Switch

You might want to have a look at this webinar: https://enfocus.webex.com/ec3000/eventcenter/recording/recordAction.do?theAction=poprecord&AT=pb&internalRecordTicket=4832534b000000025a1a2662e7a13a2d4e966a6a25ea9afc1f1078a7af610b299e2f254470f16639&renewticket=0&isurlact=true&record...
by Terkelsen
Mon Mar 07, 2016 2:53 pm
Forum: LEGACY scripting
Topic: Get list of PDF-files from folder to populate drop-down
Replies: 9
Views: 16694

Re: Get list of PDF-files from folder to populate drop-down

Hi Jimmy ;) Try This: var theDir = new Dir("D:\\SB-S\kursussystem-v2\APPROVED"); var theEntries = theDir.entryList("*.pdf", Dir.Files, Dir.Name); var list = new Array; for (var i = 0; i < theEntries.length; i++) list.push(theEntries ); list; The extra backlash made all the differ...
by Terkelsen
Mon Feb 29, 2016 2:01 pm
Forum: Action Lists
Topic: Outline ONLY TrueType Fonts
Replies: 5
Views: 8697

Re: Outline ONLY TrueType Fonts

I'm afraid there is no way to solve this with automation. Read the following http://supportportal.enfocus.com/Suppor ... 000jfc8IAA
by Terkelsen
Tue Feb 23, 2016 3:24 pm
Forum: Action Lists
Topic: Outline ONLY TrueType Fonts
Replies: 5
Views: 8697

Re: Outline ONLY TrueType Fonts

I guess the easier thing would be to use an action rather than a profile. In PitStop Server (assuming you are on version 13) go to Window->Action Lists... Create a new Action List. First you select "Select Fonts by type" and in the dropdown select TrueType. Then add "Convert text to o...
by Terkelsen
Tue Feb 23, 2016 1:50 pm
Forum: Action Lists
Topic: Outline ONLY TrueType Fonts
Replies: 5
Views: 8697

Re: Outline ONLY TrueType Fonts

You just use "Select font by type" before "Convert text to outline"
by Terkelsen
Wed Feb 10, 2016 9:44 am
Forum: PDF Creation
Topic: Multiple crops of a single page
Replies: 1
Views: 5927

Re: Multiple crops of a single page

I would use PitStop Server and Switch to do that. Make a PitStop Action of the type "Resize crop box" for each cropping that needs to be done. In the action you define x and y coordinates for lower left and upper right corners of the cropping. Maybe add a "Set media box to crop box si...
by Terkelsen
Mon Feb 08, 2016 11:53 am
Forum: PitStop Pro
Topic: Calculate Print Area
Replies: 1
Views: 3965

Re: Calculate Print Area

There is a feature in Preflight, where you can check the report type called "Ink". That will tell you how many percentages and how many square mm are covered with each ink on each page.
by Terkelsen
Thu Feb 04, 2016 9:17 am
Forum: Flows
Topic: Merge, or overlay, PDFs
Replies: 10
Views: 11403

Re: Merge, or overlay, PDFs

Well, there will obviously have to be some kind of relation between the 4-color-PDF and the language_PDF. In my case a certain part of the job name was the same. I had the language-PDF's coming into the Switch flow and pdfToolbox picking up the corresponding 4-color-PDF using "Overlay" and...
by Terkelsen
Wed Feb 03, 2016 4:18 pm
Forum: Flows
Topic: Merge, or overlay, PDFs
Replies: 10
Views: 11403

Re: Merge, or overlay, PDFs

If it's the same image-PDF you want to place into several different language-PDF's you could do this using the "Paste copied graphic" action. If it's all different image-PDFs this won't be of much help. I have done this for a 164 page catalog in 17 languages using pdfToolbox which integrat...