Search found 4 matches

by Stephen_A_Marsh
Wed Apr 15, 2020 3:07 pm
Forum: Action Lists
Topic: Select spot color by regular expression
Replies: 3
Views: 6327

Re: Select spot color by regular expression

Case insensitive: (?i)

Code: Select all

(?i)laser
would select:

laser
Laser
LASER
lASER
etc.
by Stephen_A_Marsh
Sat Jul 20, 2019 3:55 am
Forum: PitStop Pro
Topic: how acrobat crop pdf permanently?
Replies: 2
Views: 4200

Re: how acrobat crop pdf permanently?

It sounds like you wish to make permanent/destructive changes? If so, you could try something like the attached action list screenshot. Change all PageBoxes to the TrimBox, "hard crop" lineart to the TrimBox and clipping masks, remove objects outside of the TrimBox and remove invisible obj...
by Stephen_A_Marsh
Sat Jul 20, 2019 3:13 am
Forum: PitStop Pro
Topic: Delete an object that repeats itself throughout a document
Replies: 1
Views: 3466

Re: Delete an object that repeats itself throughout a document

This is very hard to answer without a sample file that has multiple examples of both the wanted and unwanted elements.
by Stephen_A_Marsh
Fri Dec 15, 2017 11:32 am
Forum: PitStop Pro
Topic: Removing the extension when using the %Current Document Name%
Replies: 3
Views: 6110

Re: Removing the extension when using the %Current Document Name%

Not that I am aware of.

If we could add a regular expression, the following should do the trick:

Code: Select all

\.[^\.]+$
Having the ability to create our own text variables or to modify standard text variables would be nice.