Search found 9 matches

by Walyx
Sat Jun 13, 2020 1:23 am
Forum: Photoshop Scripting: Code Snippets
Topic: UI progressbar example
Replies: 32
Views: 99649

Re: UI progressbar example

Hello, good day! Palette doesn't seem to work on Mac. When I close it it seems to close, but if you switch applications and go back to PS, it reappears. JJMack jjmack indicates that adobe documentation warns it. https://community.adobe.com/t5/photoshop/scriptui-quot-palette-quot-window-doesn-t-close...
by Walyx
Wed Jun 10, 2020 9:35 pm
Forum: Help Me
Topic: Show/Hide Transform Controls
Replies: 4
Views: 4985

Re: Show/Hide Transform Controls

Thank you! :)

putBoolean(cTT('Abbx'), false) -> Hide Transform Controls
putBoolean(cTT('Abbx'), true) -> Show Transform Controls

It works perfect!
Best regards,

Walter
by Walyx
Wed Jun 10, 2020 3:06 pm
Forum: Help Me
Topic: Show/Hide Transform Controls
Replies: 4
Views: 4985

Re: Show/Hide Transform Controls

Hello, good day!
I tried the ScriptListener.8li, but it doesn't generate any code to hide "Transform Controls", is there a way to do this by Script?
Thanks,

Walter
by Walyx
Wed Jun 10, 2020 5:32 am
Forum: Photoshop Scripting - General Discussion
Topic: Thankyou Message & a Question : Pause Updation of Images while running Scripts
Replies: 3
Views: 8135

Re: Thankyou Message & a Question : Pause Updation of Images while running Scripts

Hello Goodnight!. I have the same problem, I would like it not to redraw what is in the Script, just see the final image. I would like to know if I could do something to improve the performance of this scrip which takes about 10 seconds on my machine. I know the code is not very good writen, I don't...
by Walyx
Tue Jun 02, 2020 3:50 am
Forum: Help Me
Topic: Optimize short code.
Replies: 7
Views: 4234

Re: Optimize short code.

Thank you very much, I finally did it this way. I generated a Plugin that writes to GetEnv ("Temp") and then the Script takes it from the same place. If you want to try it, this is the Panel and the Plugin. It only works on Windows, I have to try to make it work on Mac. https://bit.ly/2ZLi...
by Walyx
Mon May 18, 2020 2:25 pm
Forum: Help Me
Topic: Optimize short code.
Replies: 7
Views: 4234

Re: Optimize short code.

Thanks Kukurykus! I did not like the Bridge option because I wanted it to be something independent of another application. Some users may not have Bridge installed. I thought that from the graph that I attached, there was a way to send parameters in filterSelectorStart and then take them from filter...
by Walyx
Mon May 18, 2020 6:00 am
Forum: Help Me
Topic: Optimize short code.
Replies: 7
Views: 4234

Re: Optimize short code.

Hello, I modified the code of http://telegraphics.com.au/sw/product/CountColours so that it counts the amount of Hues. It only works for 8bits and I think also only for Windows but well, it's something. Question, how can I pass parameters from a Script to the Plug-in and then return them to the Scri...
by Walyx
Thu May 14, 2020 1:14 pm
Forum: Help Me
Topic: Optimize short code.
Replies: 7
Views: 4234

Re: Optimize short code.

Thank you!
It sounds difficult, but I will try it :)
by Walyx
Thu May 14, 2020 2:09 am
Forum: Help Me
Topic: Optimize short code.
Replies: 7
Views: 4234

Optimize short code.

Dear everyone, I wanted to make a Script in PS that goes through each pixel of the image. Take the hue of each pixel and then summarize by hue. This would allow me to see what colors are in a photo and be able to show them in a graphic. But it only takes a long time for these two "for" and...