Hi!
This is the first script i ever wrote, so sorry for bugging you with basic stuff.
so here is my question:
How do i make a button change if something is selected... just watch the example below:
I have one button,
================================
string $button1 = button -command ("whatever") -label "whatbutton" -bgc 1.0.0
;
global proc whatever()
{
int $mods = getModifiers
;
if
(($mods / 1) % 2)
select -add sphere1 ;
else
select -r sphere1 ;
}
================================
So this works fine, but now how do i add something like this to the button?:
/////////////////////////////
If sphere1 is selected
button -edit -bgc 0.0.1 = $button1
else -bgc 1.0.0 = $button1
/////////////////////////////
So i want the button to be blue if the object is selected, and green if the object is not selected.
Not only that i would like to had this to my script, but i would like to understand how such a command would be written. mostly out of curiosity.
Thanks!
created
Oct '05
last reply
Oct '05
- 10
replies
- 1.0k
views
- 1
user