Search found 6 matches

by joonaspaakko
Thu Feb 28, 2019 7:52 am
Forum: Help Me
Topic: looking for a script to apply adjustment layers to multiple layers
Replies: 9
Views: 13534

Re: looking for a script to apply adjustment layers to multiple layers

Hi I'm still in search of such a script, I would like some help I didn't read the whole thread, but based on the first few posts, I believe this script does what you want: https://gist.github.com/joonaspaakko/013a223e94ba0fb9a2a0 Edit: I now realize there is not even a single mention of export. So ...
by joonaspaakko
Tue Feb 26, 2019 1:11 pm
Forum: Photoshop Scripting - General Discussion
Topic: Download and Open Web Image In Photoshop
Replies: 3
Views: 8368

Re: Download and Open Web Image In Photoshop

Pasting the image into Photoshop is quite different from that code example. When you're copying the image, you're not copying the image url, but the image itself. When you finally paste it into Photoshop, it simply takes what is in the clipboard and places it in the document. So it's not photoshop t...
by joonaspaakko
Tue Feb 26, 2019 12:29 pm
Forum: Photoshop Scripting - General Discussion
Topic: Vector rectangle shape made with ExtendScript?
Replies: 2
Views: 6650

Re: Vector rectangle shape made with ExtendScript?

Couple Action methods come to mind. Neither of these use shape layers but should be about as flexible in this case, if not more so... Method #1 Layer > New Fill Layer... Layer fill: 0 Layer style: Stroke (inset) A possible downside is that since the stroke is inset, it might hide things behind it. F...
by joonaspaakko
Wed Jan 16, 2019 6:26 pm
Forum: Photoshop Scripting - General Discussion
Topic: ScriptUI dialog builder (web app)
Replies: 3
Views: 6698

Re: ScriptUI dialog builder (web app)

Thanks. I hope you get to try it properly and it helps.
by joonaspaakko
Wed Jan 16, 2019 11:34 am
Forum: Photoshop Scripting - General Discussion
Topic: ScriptUI dialog builder (web app)
Replies: 3
Views: 6698

ScriptUI dialog builder (web app)

A shameless plug: I've made a web app for designing/building ScriptUI dialogs. It's a visual editor that generates javascript on export. Website: https://scriptui.joonas.me/ - (Made to work in Chrome but may work in other modern browsers) Github: https://github.com/joonaspaakko/ScriptUI-Dialog-Buil...
by joonaspaakko
Wed Dec 12, 2018 1:37 pm
Forum: Photoshop Scripting - General Discussion
Topic: Is it possible to make scriptui multiline text work with set width but no height
Replies: 0
Views: 7572

Is it possible to make scriptui multiline text work with set width but no height

I'd ideally like to set a width to a multiline statictext item and have the height match content height, but ScriptUI seems to have issues with this. It seems like it calculates the height before the width is defined... so when the width is set, the text flow changes leaving bunch of whitespace belo...