Search found 38 matches

by Jaroslav Bereza
Tue Feb 19, 2019 1:42 pm
Forum: Help Me
Topic: Merge down every other layer in the layer stack?
Replies: 2
Views: 3754

Re: Merge down every other layer in the layer stack?

I think my Plugin could help you. But you still need to select every other layer manually. On the other side, it could help you even with different problems.
https://pepperbox.bereza.cz/
by Jaroslav Bereza
Tue Mar 20, 2018 7:19 pm
Forum: Photoshop Scripting - General Discussion
Topic: [ANN] MouseScript - a new way to automate Photoshop, no coding required!
Replies: 5
Views: 9985

Re: [ANN] MouseScript - a new way to automate Photoshop, no coding required!

I still have no Idea what it is. Do you have screen record or something like that? :-)
by Jaroslav Bereza
Sun Jan 07, 2018 11:20 am
Forum: Photoshop Scripting - General Discussion
Topic: playback_accelerated
Replies: 2
Views: 6668

Re: playback_accelerated

In actions panel you can set how fast actions will be played.
Playing actions from this panel is almost same as playing actions from script.
Default settings is accelerated and this will make you sure that it will be accelerated if user changed it.
by Jaroslav Bereza
Sun Dec 03, 2017 9:02 pm
Forum: Help Me
Topic: get text layer properties via Action manager
Replies: 2
Views: 5387

Re: get text layer properties via Action manager

Hi, check my tool: https://github.com/jardicc/ActionManagerHumanizer

Examples are changing text properties.
by Jaroslav Bereza
Sun Oct 22, 2017 10:53 pm
Forum: Photoshop Scripting - General Discussion
Topic: Get timeline frame number?
Replies: 4
Views: 9290

Re: Get timeline frame number?

var ref = new ActionReference(); ref.putProperty(stringIDToTypeID('property'), stringIDToTypeID('time')); ref.putClass(stringIDToTypeID('timeline'), stringIDToTypeID('timeline')); var desc = executeActionGet(ref); // <- it's here inside desc var time_Seconds = desc.getObjectValue(stringIDToTypeID('...
by Jaroslav Bereza
Sun Oct 22, 2017 10:43 pm
Forum: Help Me
Topic: [artLayer].id returns undefined on Windows, works fine on Mac
Replies: 1
Views: 3813

Re: [artLayer].id returns undefined on Windows, works fine on Mac

Do you have same PS version on Mac and Windows? ".id" might be new since some version.
by Jaroslav Bereza
Sat Oct 14, 2017 10:58 am
Forum: Photoshop Scripting - General Discussion
Topic: Performance of custom Zoom In script
Replies: 14
Views: 26623

Re: Performance of custom Zoom In script

This is my final version. Anyway It will work wrong if you have screenSize as "pixels/cm" and you can't read this setting. main(); function main(){ /**************** Use either zoomIn(); zoomOut(); **************/ if(!documents.length) return; var zoomLevels=[12.5, 25, 50, 100, 150, 200, 3...
by Jaroslav Bereza
Fri Oct 13, 2017 8:36 pm
Forum: Photoshop Scripting - General Discussion
Topic: Performance of custom Zoom In script
Replies: 14
Views: 26623

Re: Performance of custom Zoom In script

So I figured out what is going on... 1) script is changing only document resolution value but not width and height in pixels and from this reason "print size" changes zoom. 2) so we need read value before and set it back after changing I would prefer not changing document resolution but sc...
by Jaroslav Bereza
Fri Oct 13, 2017 8:22 pm
Forum: Photoshop Scripting - General Discussion
Topic: Performance of custom Zoom In script
Replies: 14
Views: 26623

Re: Performance of custom Zoom In script

It was Mike Hale's hack. "PrnS" is "PrintSize". Not really sure what it does. I know how it works. You can set print resolution in PS unit settings. Here: http://sklad.bereza.cz/00-jarda/00_screenshot/2017-10-13_220851.jpg You can set here how many DPI has your monitor. So you c...
by Jaroslav Bereza
Tue Oct 10, 2017 9:53 pm
Forum: Photoshop Scripting - General Discussion
Topic: Performance of custom Zoom In script
Replies: 14
Views: 26623

Re: Performance of custom Zoom In script

I think this not zoom, but some kind of hack :-D
Looks like you are changing resolution without any visible change.