Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
--------------------
Look for color selector object in the extensions. It will let you choose whatever color and spit out a number that you can use.
So using this, I get 16777215 for white (when I select white while the program is running) and the code plugs it into the RGB Coefficient
Or you could use GetRGB(255, 255, 255) for white and plug that into RGB Coefficient.
Remember that RGB Coefficient applies that color to the current object color. So if you have a red object and apply RGB Coefficient of blue... you will end up with purple.
---------------
EDIT: O and if you are just wanting to know what the numbers are. You could literally just take the color selector object and place it on a program and a string object. Then code everytime you pick a color the string will display the number.
You essentially just made the program you are looking for with 2 objects and 1 line of code
https://www.dropbox.com/s/qg1raozwrnpuny5/Color%20Selector.mfa?dl=0
EDIT: And for those people who don't have Fusion 2.5, here is the .exe file so you can have the "calculator"/information available too
https://www.dropbox.com/s/3b6dlouru9g1zcm/Color%20Selector.exe?dl=0
You sir, are a hero. Do these forums have an MVP feature? MVP right here everyone.
Source http://www.pbdr.com/pbtips/ps/rgblong.htm
If you need to get rgb back again use GetRed(), GetGreen(), GetBlue().