Menu help please!
Posted: Sun Sep 17, 2006 3:12 pm
Can someone provide me with code to create a menu based on text actors, when the focus is on an option, the text goes opaque, otherwise it goes 50% transparent....?
focus++;
if(focus > 2) focus = 1;
switch(focus)
{
case 1:
button1.transp = 0; //opaque
button2.transp = .5; //transparent
break;
case 2:
button1.transp = .5;
button2.transp = 0;
break;
}