Clickteam Fusion 2.5

Clickteam Fusion 2.5

Alpha17x Nov 11, 2016 @ 2:00pm
Anyone have a system color calculator?
I'm making an interface that uses active system boxes. I want the background of one to change when that section of the application is active. I know how to do this but for no discernible reason, it doesn't bring up a color picker and instead only offers the option of inputting the numerical string for a system color.

I'm looking for a calculator or picker that will take RGB values and spit out the system color code. The only thigns I've found are people trying to explain how to do the over-complicated calculation to figure out that green = the gravitational constant of the universe or some nonsense.

Please for the love of whatever god or moral calling you believe in; this is NOT hex code.
I've seen so many people saying 'just use hex' no. it's not hex; go home, you are drunk :(.

There are even sites that have a bunch of interactive calculators for everything else then when they get to system colors they explain how LED's work and have some giant chart that Stephen Hawking would probably starts sweating from after looking at it.

Another problem I've seen online is that quite often when people ask this same question, another person links to some c# code. NO. Calculator. complete, ready to hand the information over.

Anyone whoever might know of or have such a tool (seriously why is this so difficult) you are a hero of the internet.


TLDR: Looking for an online tool that spits out system color code strings.
Please refrain from linking to things that are not specifically an online tool that spits out system color code strings. Do not link to your grandma's source code, do not link to your friend Larry's warp engine fold diagram Only link to a system color code calculator/generator/thing that does all of the work for you so you don't have to use a single brain cell to figure it out.

And thank you.
Last edited by Alpha17x; Nov 11, 2016 @ 2:02pm
< >
Showing 1-6 of 6 comments
Squatter Nov 11, 2016 @ 7:46pm 
Everything I talk about below is using objects and code to get results. No need to use some online tool to get a number if you want the user to select a color in the program and have it change.

--------------------

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
Last edited by Squatter; Nov 11, 2016 @ 7:48pm
Squatter Nov 11, 2016 @ 7:56pm 
Here just in case there is any confusion... I made it for you

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
Last edited by Squatter; Nov 11, 2016 @ 8:15pm
Alpha17x Nov 12, 2016 @ 10:17am 
Originally posted by Squatter:
Here just in case there is any confusion... I made it for you

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.
kisguri  [developer] Nov 15, 2016 @ 8:43am 
Squatter, you should upload that to Clickstore sir or here on Workshop!
Squatter Nov 15, 2016 @ 5:13pm 
ok I will polish it up and add it to the workshop (add some flair... etc)
Metaleiroll Feb 6, 2017 @ 7:12am 
I found this: (65536 * Blue) + (256 * Green) + (Red)
Source http://www.pbdr.com/pbtips/ps/rgblong.htm
If you need to get rgb back again use GetRed(), GetGreen(), GetBlue().
Last edited by Metaleiroll; Feb 6, 2017 @ 7:14am
< >
Showing 1-6 of 6 comments
Per page: 1530 50

Date Posted: Nov 11, 2016 @ 2:00pm
Posts: 6