QuoteI think you might be referring to the Button.MouseOverGraphic which allows you to change a Button on a GUI to show a different image when the user hovers the mouse over the button.
Thanks, I mean it. This being the case I have one question: where can I found to apply of Button.MouseOverGraphic in practice? I am newbie yet and I can't add parameters myself. I used Search but I do not found solution. Only it:
function off_SoTurnOn(this Button*)
{
if (this.NormalGraphic == 1175)
{
this.NormalGraphic = 1176;
this.PushedGraphic = 1175;
this.MouseOverGraphic = 1184;
}
}
I should do that?
Edit: Oh, I forgot: Thanks for advices about graphic. I will do it.