This content has been marked as final.
Show 1 reply
-
1. Re: How do I create an action that randomly adjusts the hue in hue/saturation using Photoshop Script?
csuebele Apr 24, 2014 12:22 PM (in response to OpticalIrony)Use scriptListener to create the code for adjusting the hue. find the line in the code that denotes the change in hue replace that value with a variable that stores a random number:
var rangeForRandomNumber = 200
var offsetForRandomNumber = -100
var randomNumber = Math.random() * rangeForRandomNumber + offsetForRandomNumber


