ZBrushCentral

Were is Color picker button located for "C" if there is none can one be made?

Just wanted to ask were the color picker button of “C” is so I can change it to something else like Alt+C, There a color picker in the Picker menu but it isn’t the “C” version it updates colors on the model very slow.
If there isn’t a button for the “C” color picker would it be possible to make a script of to turn it to a button so the key can be set to something else?

There’s no button for the Color picker so you can’t assign a different hotkey. But you can create a macro that picks the color from the canvas and assign a hotkey to that. Just copy the code below into a text file and save to your ZStartup\Macros\Misc folder:

[IButton,???,“Assign hotkey to pick a color from Canvas”,
[VarSet,col,[PixolPick,0,[MouseHPos],[MouseVPos]]]
[ISet,Color:Main Color, col/65536]
,.5]//end macro

***Note that this will only pick a color from the canvas. This differs from the Color Picker which will pick the color from anywhere on the interface.

Thanks for the help marcus been so confused trying to find the button for it >.<