Paul-Riggott / PS-Scripts

Photoshop Scripts
194 stars 73 forks source link

PS Layer Name Edit #8

Open Fainder86 opened 6 years ago

Fainder86 commented 6 years ago

Hi, this plugin is a life saver and has everything I need, I love it! Though the interface appears extremely washed out and I can't make out what's what without looking at it from an angle or comparing to a screenshot. Any idea about it? Thank you!! screenshot_2

mbloflin commented 3 years ago

Look for the line somewhere near the top where the dialog is being called (var win = new Window('dialog','Dialog Box Name') then there is a line under that that specifies the background color (win.graphics.backgroundColor), so change that to something dark. For the Layer Saver script, it was var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]); g.backgroundColor = myBrush;

I changed it to: var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.1, 0.1, 0.1, 1]);

and it was perfectly readable being almost black background now with white text.

mbloflin commented 3 years ago

Use ExtendScript Toolkit CS5 if you can find it to link to your active PS and run the script and you can interactively change the value and see how it looks.

schroef commented 3 years ago

If you comment out, add // to the beginning, the dialog will have the default color. He has added a lot of styling, i personally find it a bit over the top. But i appreciated him taking the time, people can learn from that. It helps you style if you want to

Fainder86 commented 2 years ago

Amazing, I only see these answers now. Changing the background worked, TYSM!

FabianoIlCapo commented 2 years ago

If you comment out, add // to the beginning, the dialog will have the default color. He has added a lot of styling, i personally find it a bit over the top. But i appreciated him taking the time, people can learn from that. It helps you style if you want to

Following your suggestion, I managed to get the default background colour. Here's the script and a screenshot:

Layer Name Edit - default background.zip

immagine