Search found 4 matches
- Sun Nov 21, 2021 6:14 pm
- Forum: Help Me
- Topic: Create 100s of plain color png files
- Replies: 6
- Views: 5537
Re: Create 100s of plain color png files
@Kukurykus Thank you, thank you very much. This is what I needed. With your kind help I also learned a little bit how a script works. The final code: displayDialogs = DialogModes.NO var currentRulers = app.preferences.rulerUnits; app.preferences.rulerUnits = Units.PIXELS; // SAVE PATH var rootFolder...
- Sun Nov 21, 2021 3:34 pm
- Forum: Help Me
- Topic: Create 100s of plain color png files
- Replies: 6
- Views: 5537
Re: Create 100s of plain color png files
@Kukurykus Yes. Now, with your corrections the code works as expected. Thank you, very much. I removed the below 3 parts of the original code: // RANDOM NUMBER GENERATOR function rando(min, max) { return Math.floor(Math.random() * (max - min + 1) ) + min; } var revWidth = (Math.floor(w)).toString();...
- Sun Nov 21, 2021 12:20 am
- Forum: Help Me
- Topic: Create 100s of plain color png files
- Replies: 6
- Views: 5537
Re: Create 100s of plain color png files
@Kukurykus Thank you very much for your kind help. With your adjustments the code certainly does what I requested. But the colors generated are wrong. The name of the png created is not equal to the displayed color. I suspect it is because the original code randomly pick any hex value and name the f...
- Sat Nov 20, 2021 9:37 pm
- Forum: Help Me
- Topic: Create 100s of plain color png files
- Replies: 6
- Views: 5537
Create 100s of plain color png files
Hello, First post. I found the below code from this post https://www.ps-scripts.com/viewtopic.php?f=66&t=40450&p=169300&hilit=change+color#p169300 That almost does what I am looking for. I need to auto-create +300 solid color images from a series of pre-selected hex codes. But I need to ...