Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
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
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'?
Develop games in your browser. Powerful, performant & highly capable.
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!