
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
05/01/2027
Worlds first 802.15.4ab-UWB chip verified by Calterah and Rohde & Schwarz to be ...
07/10/2026
Dalet, a leading technology and service provider for media-rich organizations, today announced the latest Long-Term Supported (LTS) release of Dalet Flex. Build...
06/09/2026
June 9 2026, 23:00 (PDT) Dolby and MagentaTV Bring Fans Closer to the FIFA Worl...
08/08/2026
Enhanced ToneNET integration & 220 new Premium V2 Tone Models
IK Multimedia have just launched a public beta of Tonex 2.0, a release which is said to repres...
08/08/2026
Honouring the drum machine that redefined modern music
Roland have announced their plans for this year's 808 Day, a day that was founded to celebrate th...
08/08/2026
The National Film and Video Foundation (NFVF), an agency of the Department of Sp...
08/08/2026
Star Wars Hyperspeed Tutorial: The No-Echo Method in After Effects
Graham Quince August 8, 2026
0 Comments
The Echo Effect to create long streaks is n...
08/08/2026
Chyron Releases AXIS 4.0 With Expanded News Workflows and Richer Map Storytellin...
08/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
08/08/2026
Foundry Unlocks Professional-Grade AI for VFX with Griptape Enterprise; Appoints...
08/08/2026
Award Winning New Horror Film Shot Using Blackmagic Camera App
Brie Clayton August 7, 2026
0 Comments
Fire Alive, shot using the Blackmagic Camera i...
08/08/2026
The global buildout of AI infrastructure reached a new milestone today - Firebird, an emerging AI cloud, launched the CIS region's largest AI factory in Arm...
07/08/2026
Diversified has appointed industry veteran Pete Emminger as global chief technology officer. Emminger will lead the company's global go-to-market technology...
07/08/2026
O'Shea Jackson Jr., Dave Franco, and Mason Thames appear in Idiots by Macon Blair, an official selection of the 2026 Sundance Film Festival. (Courtesy of ...
07/08/2026
An instrument made for the adventurous composer
Described as an instrument made for the adventurous composer , Sonuscore's latest sample library has b...
07/08/2026
Latest solo Synchron libraries arrive
VSL have just released the final two instalments in their range of muted solo string libraries. Recorded in the large ...
07/08/2026
Channel strip offers plug-in control & recall
Along with some new additions to their Inherit modular preamp system, GC Audio's announcements for NAMM 20...
07/08/2026
Opening Statement: Public hearing of the Inquiry into Racism, Hate and Violence ...
07/08/2026
DoubleVerify Shareholders to Receive $13.60 Per Share in Cash, Representing a 30...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
The Award Recognizes ACT's Outstanding Sales Performance, Marketing Collaboration and Long-standing Commitment to the NEUTRIK Brand
ACT Entertainment, one ...
07/08/2026
Beamr Imaging Ltd. (Nasdaq: BMR), a leader in video optimization technology and solutions, today announced it is bringing AI upscaling to live sports, broadcast...
07/08/2026
Berklee City Music Presents Nine Scholarships and Awards at Annual Concert Student recipients from seven states and Canada received scholarships, housing awar...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Share
Copy link
Facebook
X
Linkedin
Bluesky
Email...
07/08/2026
Riedel Communications at IBC2026: Live Production Experience Showcasing Integrated IP Production Workflows
At IBC2026, Riedel Communications will bring modern ...
07/08/2026
Shotoku Showcases Expanding Aura PTZ Ecosystem and Award-Winning Swoop Robotic Crane at IBC2026
Shotoku Broadcast Systems will officially introduce its Aura fa...
07/08/2026
Highlights will include new Dante fiber connectivity, expanded IPMX capabilities and award-winning signal processing solutions
Cobalt Digital, the leading des...
07/08/2026
Bob Moses Concert at Red Rocks Captured with URSA Cine 12K LF
Brie Clayton August 6, 2026
0 Comments
PYXIS 12K and URSA Cine 12K LF enable cinematic c...
07/08/2026
Use It or Else Is Not an AI Implementation Strategy
Andy Marken August 6, 2026
0 Comments
Source - Hitchhikers Guide to the Universe, Touchstone Pi...
07/08/2026
Friday 7 August 2026
Heated Rivalry will return to Sky and NOW in Spring 2027 e...
07/08/2026
Migration of more than 1,000 radio services delivers improved resilience, efficiency and sustainability
07 August 2026, Winchester, UK Arqiva, the UK's l...
07/08/2026
On 6 August, the European Commission and the SpaceRISE consortium concluded nego...
07/08/2026
The Traitors Ireland Uncloaked is also back with all the behind the scenes drama...
06/08/2026
The broadcaster's 14-race schedule begins in Iowa and ends in November with ...
06/08/2026
In-venue and creative video staffers at the professional and collegiate level ha...
06/08/2026
As media organizations consolidate teams, technology platforms, and content libr...
06/08/2026
Firmware updates introduce Dolby's next-generation picture engine, content-aware optimization, and new motion and ambient-light tools...
06/08/2026
TNT Sports will have wall-to-wall coverage of the upcoming FIBA Women's Bask...
06/08/2026
swXtch.io (Stand 5.MR13) has unveiled groundSwXtch for Audio over IP (AoIP), a software application that lets broadcasters and media organizations move audio in...
06/08/2026
At IBC2026, Riedel Communications (Stands: 10.A24, 10.A31, 10.A38) will bring modern media production to life with the Live Production Experience - a connected ...
06/08/2026
The first live-sports director to receive the prestigious honor, eight-time Emmy...