Ho to change working panel's background color?
I'll tried to watch the scriptd editor (with echo all command on) and I saw 'updateRGBColor background;' .Any idea ?
tnks
window -> settings/preferences -> colors
TJ Galda Character Technical Director and AnimatorNelvana [http://www.nelvana.com]
ok but,with a mel script. I need a button or an hot key to change the background from gray to blak or white with a hot keytnks
Following sets the background color to black or white:
displayRGBColor "background" 0. 0. 0.; displayRGBColor "background" 1. 1. 1.;
Try "whatIs updateRGBColor" to see that it is a function in maya4.0/scripts/others/colorPrefWnd.mel.
[mike]