Is there a way I can make my button glow, etc when I move my cursor over it? If so, can I know how? Thanks
Develop games in your browser. Powerful, performant & highly capable.
If you mean Button object, you can do this with CSS:
scirra.com/tutorials/1283/easily-add-css-effects
If your button is a Sprite, simply add an event like this:
Mouse cursor over MyButton : MyButton set animation frame to 1 Else : MyButton set animation frame to 0
Thanks, it worked, but can you explain more about how to code the 'Else: Set animation frame to 0'?
I don't know what to explain. It's a standard "If ... then ... else" structure. If mouse cursor over object, set frame 1, otherwise set frame 0.
.
If you are asking how to add "Else" event - select first event and press X on keyboard.
Yea I needed the 'else' event, I realized where though so thanks!