
Random Fixed Color Expression
Andy Ford June 28, 2022
0 Comments
This tutorial expands upon my previous tutorial on creating a random color expression. That expression randomly changed color of your shape layer, but you achieved values that were in between the range of colors you selected. This tutorial features expressions to help you randomly change between fixed colors and not get the in-between values.
Some contents or functionalities here are not available due to your cookie preferences!
This happens because the functionality/content marked as Google Youtube uses cookies that you choosed to keep disabled. In order to view this content or use this functionality, please enable cookies: click here to open your cookie preferences.
First, we add color controls to our shape layer for each color that we want to appear. Then, we set an expression for our shape's fill color and create variables for each and add those variables to an array. We can control the value of the array by adding a slider control, and then return the value of the array (which is determined by the slider).
Once you add Math.floor to your slider value to eliminate complexities when your slider value is not a whole number, you can control the color shown based on your slider value.
var color1 = effect( Color Control 1 )( Color );
var color2 = effect( Color Control 2 )( Color );
var color3 = effect( Color Control 3 )( Color );
var color4 = effect( Color Control 4 )( Color );
var color5 = effect( Color Control 5 )( Color );
colors=[color1,color2,color3,color4,color5];
slider=Math.floor(effect( Slider Control )( Slider ));
colors[slider];
To automate this, we need to do more. We must make a variable that makes this whole expression go. For this, we create a variable that is equal to Math.floor(time/slider). This creates a whole number value that is always changing and makes your slider value act as a throttle or speed control.
This expression needs to work in conjunction with seedRandom. The seedRandom method allows you to replay the same random movements every time. The seed value is the variable we just created above, and then we need to complete the seedRandom method with a timeless argument that is either true or false. In this case, we want to use true because that makes this timeless. By that, I mean it stays the same on each frame but still chooses a random value. If you select false, everything changes each frame, which is not what is needed in this instance.
Now we need another value that helps choose the color. Set this to Math.floor(random(colors.length)). This adds the randomness into the equation, and sets the confines of the randomness to the number of values in your array. Finally, we return the value of the colors, which in the variable just created.
var color1 = effect( Color Control 1 )( Color );
var color2 = effect( Color Control 2 )( Color );
var color3 = effect( Color Control 3 )( Color );
var color4 = effect( Color Control 4 )( Color );
var color5 = effect( Color Control 5 )( Color );
colors=[color1,color2,color3,color4,color5];
slider=effect( Slider Control )( Slider );
engine=Math.floor(time/slider);
seedRandom(engine,true);
colorChoose=Math.floor(random(colors.length));
colors[colorChoose];
Speed of color change is regulated by the slider control value.
###
Enjoying this tutorial? Sign up now for the Creative COW Newsletter!
Sign up for the Creative COW newsletter and get weekly updates on industry news, forum highlights, inspirational tutorials, tips, burning questions, and more! Receive bulletins from the largest, longest-running community dedicated to supporting professionals working in film, video, and audio.
Enter your email address, a first and last name, and let us know what you'd like to see more of in the message!
.grecaptcha-badge{visibility:hidden}.meow-contact-form .meow-contact-form__header{display:flex;margin-bottom:10px}.meow-contact-form .meow-contact-form__header .meow-contact-form__header__content{flex:1;display:flex;flex-direction:column;justify-content:center}.meow-contact-form .meow-contact-form__header .meow-contact-form__header--image--left{margin-right:10px}.meow-contact-form .meow-contact-form__header .meow-contact-form__header--image--right{margin-left:10px}.meow-contact-form--editor input{color:gray}.meow-contact-form--default{font-size:18px}.meow-contact-form--default input:not([type=submit]),.meow-contact-form--default textarea{width:100%}.meow-contact-form--default input[type=submit]{padding:10px 40px;font-size:18px;line-height:18px}.meow-contact-form--default .meow-contact-form__info{margin-top:-10px;margin-bottom:10px;font-size:14px}.meow-contact-form--default .meow-contact-form-message{font-style:italic}.meow-contact-form--default .meow-contact-form__group{margin-bottom:15px;font-size:16px}.meow-contact-form--default .meow-contact-form__group .meow-contact-form__group-input,.meow-contact-form--default .meow-contact-form__group .meow-contact-form__group-textarea{margin-top:3px;padding:5px;font-size:14px}.meow-contact-form--default .meow-contact-form__header{margin-bottom:15px}.meow-contact-form--default .meow-contact-form__header__content--title{font-size:24px;line-height:24px}.meow-contact-form--default .meow-contact-form__header__content--text{margin-top:5px;font-size:16px;line-height:16px;color:gray}.meow-contact-form--default .meow-contact-form__group-button{padding:10px 20px;border:none;margin-top:10px;cursor:pointer}.meow-contact-form--default .meow-contact-form__group-button:hover{filter:brightness(1.05)}.meow-contact-form--meowapps{padding:20px;box-shadow:0 0 5px #d8d8d8;font-size:18px;background:#fff;color:#333}.meow-contact-form--meowapps input:not([type=submit]),.meow-contact-form--meowapps textarea{width:100%;border:#e7e7e7 solid 1px}.meow-contact-form--meowapps .meow-contact-form__info{margin-top:-10px;mar
Most recent headlines
11/12/2025
Dalet, a leading provider of cloud-native, end-to-end media workflow solutions, ...
17/11/2025
EA SPORTS Madden NFL Cast to Return Thanksgiving Night With Immersive, Data-Driv...
17/11/2025
Behind the Broadcast Booth: Impact Ventures' Greer Christian on Building Her...
17/11/2025
SVG Sit-Down: Sportradar's Brian Josephs Talks Peacock's Powerful Perfor...
17/11/2025
2025 Sports Broadcasting Hall of Fame: Greg Gumbel, Iconic Voice and Comforting ...
17/11/2025
ESPN, Pixar, the NFL, and Beyond Sports Team Up for ESPN's Dec. 8 Monsters,...
17/11/2025
SVG Sit-Down: EA SPORTS' Evan Dexter on How the EA SPORTS Madden NFL Cast...
17/11/2025
Cast your votes and sail into 2026 with the return of SBS's the Chillest 100
17 November, 2025
Media releases
Voting is now open for Australia's ul...
17/11/2025
When VSI Group, one of the world's leading localisation providers, set out to modernise its complex, multi-site operations built through years of acquisitio...
17/11/2025
Dealmaking for broadcast stations continues to heat up with Sinclair reporting that it has built up a 8.2% stake in E.W. Scripps and that it has been talking to...
17/11/2025
The worlds online population grew by more than 240 million people in 2025, according to Facts and Figures 2025 released today by the International Telecommunica...
17/11/2025
ASB GlassFloor, the leading provider in LED sports flooring, today announced the opening of Athletes Lab 2.0, a premier athletic training facility designed to e...
17/11/2025
SmallHD today announced the release of its popular Camera Control for Canon cinema cameras. This new integration enables filmmakers to adjust critical camera se...
17/11/2025
Luxury is in the details, and no one captures that better than the creative team at Samuel & Sons. As the visionaries behind iconic photography and advertising ...
17/11/2025
17 Nov 2025
VEON Commences USD 100 million Buyback Program Dubai, November 17, 2025: VEON Ltd. (Nasdaq: VEON), a global digital operator ( VEON or the Compan...
17/11/2025
Monday 17 November 2025
Sky brings top comedy talent to screens with new stand-up specials
Sky and streaming service NOW are bringing audiences a fresh dose o...
16/11/2025
L3Harris to deliver advanced electronic warfare systems quickly for worldwide F-16 programs...
16/11/2025
Upgrading your Apogee Symphony MKII from TB2 to TB3: Need to Knows Upgrading your Apogee interface to Thunderbolt 3 isn't difficult - but it's not a cas...
16/11/2025
Apogee Electronics Acquired by Dirk Ulrich's Rockforce Tech Holding, Parent ...
15/11/2025
BURBANK, Calif. The Walt Disney Company and YouTube TV have reached a new multi-year distribution agreement, ending a carriage dispute that had blacked out ABC,...
15/11/2025
PLYMOUTH, Wis. A group of about 20 TV technology vendors supporting NextGen TV are wrapping up their ATSC 3.0 Interop here at Heartland Video Systems headquarte...
15/11/2025
NEW YORK NBCUniversal has announced that it will be launching NBC Sports Network (NBCSN), a 24/7 linear network featuring a wide range of marquee sporting event...
15/11/2025
WASHINGTON The Federal Communications Commission has released an updated agenda for its Open Meeting on Thursday, November 20, 2025, which is scheduled to comme...
15/11/2025
JERSEY CITY, N.J. OpenVault has released new data showing that DOCSIS 3.1 and higher services are driving significant across-the-board increases in speed and co...
15/11/2025
ATLANTA Gray Media has concluded an agreement with the Ohio Valley Conference ( OVC ) to broadcast OVC college basketball games across 20 Gray markets in five s...
15/11/2025
NEW BERN, N.C. Wheatstone has named company veteran Darrin Paley vice president of business accounts, effective immediately....
15/11/2025
Back to All News
Netflix Serves Up the Trailer for Dining with the Kapoors'...
14/11/2025
Op-Ed: The Automation Imperative - Why AI Is the Only Scalable Defense Against L...
14/11/2025
FutureSPORT 2025: Caretta Research on why streaming won't save broadcasters By Jo Ruddock
Monday, November 10, 2025 - 14:37
Print This Story
Caretta R...
14/11/2025
Daneysse Daniels, Emmy-Winning Production Manager and Beloved Teammate at TNT Sp...
14/11/2025
The NBA 2K League Returns as an Immersive Entertainment Ecosystem' With Non...
14/11/2025
Inaugural SVG LIVE! Conference Brings 250 Top Sports and Entertainment Producti...
14/11/2025
(L-R) Suzette Quintanilla, Isabel Castro, and Chris P rez attend the 2025 Sundan...
14/11/2025
This week, Casa Spotify lit up Las Vegas with an unforgettable celebration of Latin music and culture ahead of the 26th Annual Latin Grammy Awards. Hosted at th...
14/11/2025
Boston Conservatory Orchestra to Perform at Carnegie Hall for United Nations Gen...
14/11/2025
Berklee Alum Lewis Pickett Wins Record of the Year at Latin Grammy Awards Pickett, a 2009 graduate, was nominated six times across three categories at this ye...
14/11/2025
PLYMOUTH, Wisc. A group of about 20 TV technology vendors supporting NextGen TV are wrapping up their ATSC 3.0 Interop here at Heartland Video Services headquar...
14/11/2025
What if your idle operations centers, inactive cloud time, staff or you as a freelancer could start generating revenue tomorrow?
NECF Corporation today announc...
14/11/2025
Dalet, a leading provider of cloud-native, end-to-end media workflow solutions, today announced that it has been recognized as a Major Player in the IDC MarketS...
14/11/2025
The recent ADAC RAVENOL 24h Race at Germany's legendary N rburgring circuit marked a milestone for live broadcast production, and Clear-Com played a pivota...
14/11/2025
Streaming tech companies M2A Media and Unified Streaming provided key software components that enabled the world's leading sports entertainment platform, DA...
14/11/2025
Lightware, an industry leader in signal management solutions, is strengthening its commitment to sustainability through a series of people-focused ESG (Environm...
14/11/2025
WASHINGTON As the federal government shut down comes to an end, the Federal Communications Commission has further extended some filing deadlines and issued some...
14/11/2025
STAMFORD, Conn. In the run-up to being spun off from Comcast, Versant has announced that USA Sports will be the new brand and division name for the company'...
14/11/2025
Friday 14 November 2025
Documentary short, Children No More, comes to Sky this December
Following its world premiere at DOC NYC yesterday, Sky today announces...
14/11/2025
Friday 14 November 2025
Sky to remain the home of Ryder Cup and DP World Tour through 2029
Sky and the DP World Tour have today announced a four-year partners...
14/11/2025
Rohde & Schwarz redefines border security with comprehensive signals intelligenc...
14/11/2025
Rohde & Schwarz, together with Samsung, first to validate 3GPP NR-NTN conformanc...
14/11/2025
Back to All News
Netflix Unveils the Trailer of City of Shadows
Entertainment
14 November 2025
GlobalSpain
Link copied to clipboard
PREMIERING ON NETFLIX ...
14/11/2025
Today's AI workloads are data-intensive, requiring more scalable and afforda...