Search found 26 matches

by pixxxelschubser
Mon Jan 02, 2017 7:37 pm
Forum: Photoshop Scripts
Topic: Calendar for one of 98 years!
Replies: 13
Views: 26400

Re: Calendar for one of 98 years!

I'm in Adobe documentation but can't find first and second colour transpareny. There is only GamutWarning from that section. When you are in JavaScript Refference Guide don't you see any preference bound to this transparency point? I used Action Manager to set other colours (black and black). I can...
by pixxxelschubser
Sun Jan 01, 2017 11:14 pm
Forum: Photoshop Scripts
Topic: Calendar for one of 98 years!
Replies: 13
Views: 26400

Re: Calendar for one of 98 years!

Me again.

Did you played with preferences transparency grid (changed to black/black) ?
If so, this point should be urgently restored after running script!
by pixxxelschubser
Sun Jan 01, 2017 4:47 pm
Forum: Photoshop Scripts
Topic: Calendar for one of 98 years!
Replies: 13
Views: 26400

Re: Calendar for one of 98 years!

$.sleep(3000)
:D

Yes. That seems possible.
;)
Many inexperienced users use scripts and they expect eg the same ruler units as before or the same work space as before. Otherwise you get questions like:
"Where are my palettes after running script?"
by pixxxelschubser
Sun Jan 01, 2017 2:15 pm
Forum: Photoshop Scripts
Topic: Calendar for one of 98 years!
Replies: 13
Views: 26400

Re: Calendar for one of 98 years!

Nice give away and a good work

One note: Please restore the screen mode after all is done. Eg. add:

Code: Select all

runMenuItem(app.stringIDToTypeID("screenModeStandard"));
by pixxxelschubser
Sun Dec 25, 2016 6:49 pm
Forum: Photoshop Scripting - General Discussion
Topic: Is there a way to apply Oil Paint filter with JavaScript in Photoshop?
Replies: 3
Views: 6451

Re: Is there a way to apply Oil Paint filter with JavaScript in Photoshop?

… Does anyone know how to do that? … This way? var oilPaintFilter = new ActionDescriptor(); oilPaintFilter.putDouble( stringIDToTypeID('stylization'), 2.5); oilPaintFilter.putDouble( stringIDToTypeID('cleanliness'), 2.3 ); oilPaintFilter.putDouble( stringIDToTypeID('brushScale'), 0.8); oilPaintFilt...
by pixxxelschubser
Thu Dec 01, 2016 8:43 pm
Forum: Photoshop Scripting Bug Repository
Topic: RegExp | (OR) gives undefined in CS 5.1
Replies: 6
Views: 38002

Re: RegExp | (OR) gives undefined in CS 5.1

Kukurykus wrote:… Meantime can you tell me did you try that code of me in newest (or just) CC Photoshop edition?
It does no matter. Both codes work with PS CS5 and also with PS CC.
by pixxxelschubser
Wed Nov 30, 2016 6:34 pm
Forum: Photoshop Scripting Bug Repository
Topic: RegExp | (OR) gives undefined in CS 5.1
Replies: 6
Views: 38002

Re: RegExp | (OR) gives undefined in CS 5.1

@Kukurykus,
are you still there?

:?:
by pixxxelschubser
Sun Nov 27, 2016 7:57 pm
Forum: Help Me
Topic: Do I need a loop to turn all layers visible or is there something quicker?
Replies: 1
Views: 3094

Re: Do I need a loop to turn all layers visible or is there something quicker?

Normally you can use this CS2+ script written by Trevor Morris in 2009:
http://morris-photographics.com/photosh ... ayers.html

This should also works in newer versions.

Give it a try.
;)