Search found 252 matches

by bens
Fri Dec 09, 2016 4:31 pm
Forum: PitStop Server
Topic: Action Lists and Preflight Profiles
Replies: 2
Views: 5789

Re: Action Lists and Preflight Profiles

Conceptually, Action Lists happen first, in the order defined in the UI. In the Preflight Profile, fixes are done before checks.

There's quite a bit more to it than that, but that's the general idea.
by bens
Fri Dec 09, 2016 4:24 pm
Forum: LEGACY scripting
Topic: Search and replace text-file for weird characters
Replies: 3
Views: 6689

Re: Search and replace text-file for weird characters

VT is probably "Vertical Tab", an ancient character that is used very infrequently. Its ASCII code is 0xB (11). I don't know whether Switch regular expressions support it, but you could try searching for \xb or \x0b. Backslash x means "interpret the next part as a hexadecimal unicode ...
by bens
Tue Oct 18, 2016 2:01 pm
Forum: PitStop Server
Topic: Remap colors to spot
Replies: 4
Views: 7851

Re: Remap colors to spot

Could the "Select color range" action help you? There is a checkbox to search in converted values of other color spaces. So for example an RGB object could be (internally) converted to DeviceGray and then if the result is between 0% and 1% gray it would be considered black.
by bens
Fri Oct 14, 2016 11:29 am
Forum: Action Lists
Topic: Layer mystery
Replies: 2
Views: 5608

Re: Layer mystery

Layers in PDF are confusing if you think of them as layers. They are not layers as you would have in Photoshop for example. Photoshop layers are real layers: content that is above other content, hiding the underlying content or (with blend modes, transparency, etc.) interacting with it. In PDF, laye...
by bens
Tue Oct 04, 2016 11:54 am
Forum: Connect YOU
Topic: Connect You upgrade 3
Replies: 4
Views: 12385

Re: Connect You upgrade 3

Hi Marc, It is impossible to officially support any OS before it is released. Apple does provide test builds before the release, but there are always changes in the final release, which makes it impossible to be 100% sure beforehand. And of course if any changes are needed for compatibility, this ha...
by bens
Wed Sep 21, 2016 6:23 pm
Forum: PitStop Pro
Topic: Corrupt Sessions break certified log
Replies: 7
Views: 9213

Re: Corrupt Sessions break certified log

Nice video showing the problem, with that Enfocus support should certainly be able to tell you something.

Did you try closing and reopening the file between saves?
by bens
Tue Sep 20, 2016 12:01 pm
Forum: PitStop Pro
Topic: Corrupt Sessions break certified log
Replies: 7
Views: 9213

Re: Corrupt Sessions break certified log

Hi, I'm not sure about the corrupt sessions or the very strange "Object is dead" error. I think you should contact Enfocus support about this. The part about visual compare of sessions not showing any differences is a known Acrobat bug I'm afraid. Adobe has confirmed it but were unable to ...
by bens
Tue Sep 20, 2016 11:51 am
Forum: LEGACY scripting
Topic: How to use Execute Command?
Replies: 7
Views: 9290

Re: How to use Execute Command?

How are you setting up the Execute command, and which error are you getting?

You may need to fix the path to the script, or point Execute command to bash with the script as parameter (I think it's the -c option for bash).
by bens
Mon Sep 05, 2016 9:54 am
Forum: Action Lists
Topic: Restore PDF creation or modification date
Replies: 3
Views: 6988

Re: Restore PDF creation or modification date

Both those sound like good ideas, and certainly doable with Switch.

Good luck :-)

Ben
by bens
Wed Aug 31, 2016 10:47 am
Forum: Action Lists
Topic: Restore PDF creation or modification date
Replies: 3
Views: 6988

Re: Restore PDF creation or modification date

I know this is not what you want to hear, but perhaps you should forget the idea of coupling the file's creation to the PDF's internal creation date. They are fundamentally different concepts. When you download the file to your machine you are effectively creating a new file - which just happens to ...
by bens
Tue Aug 30, 2016 9:57 am
Forum: PitStop Server
Topic: Edit Action Lists?
Replies: 1
Views: 4779

Re: Edit Action Lists?

It is possible, but sadly not from within the Hot Folder Editor (this would be a nice feature!) In the menu, go to Window - Action Lists. This will bring up the Action List panel similar to PitStop Pro (the same shortcut even works in Pro and Server). Here you can create, edit, and manage your Actio...
by bens
Fri Aug 19, 2016 10:19 am
Forum: LEGACY scripting
Topic: How to not use "\r" in last "writeline".
Replies: 3
Views: 3935

Re: How to not use "\r" in last "writeline".

If the length of the loop can be calculated: for ( var i = 0; i != length-1; ++i ) // length - 1 to skip the last line { text += line[i]; text += '\r'; } // now handle the last line, without \r: text += line[length-1]; If the length can't be calculated, you could instead have the first line be an ex...
by bens
Wed Aug 17, 2016 5:20 pm
Forum: PitStop Server
Topic: Rich black text
Replies: 5
Views: 9573

Re: Rich black text

Create an Action List like this: Select text segments Select color: CMYK with 100% for each component AND Log selection This will log all text objects with 100% C 100% M 100% Y 100% K. More generally you could also catch all text using multiple plates: Select text segments Check number of color plat...
by bens
Wed Aug 17, 2016 5:11 pm
Forum: Preflighting
Topic: Automate the saving of the Pitstop Preflight Report to a UNC path
Replies: 1
Views: 5226

Re: Automate the saving of the Pitstop Preflight Report to a UNC path

In PitStop Server you specify the location of the report in the Hot Folder. This can be a UNC path. If you need more specific control (for example customer A's report should go somewhere else than customer B's report) you can use a Switch flow.
by bens
Mon Aug 08, 2016 12:31 pm
Forum: PitStop Pro
Topic: Using small caps instead of lower case when editing text
Replies: 2
Views: 4626

Re: Using small caps instead of lower case when editing text

Hi, Text in PDF is a very complex matter. I won't bore you with the details, but here's a high level overview of what's going on: When you press for example the letter 'e' on your keyboard, PitStop checks the font to see which glyph should be shown on the page. Here, it goes through the Unicode mapp...