Search found 3 matches

by InfamousMakundo
Mon Sep 12, 2016 11:16 pm
Forum: General
Topic: Scaled my game but the mouse coordinates have a problem
Replies: 1
Views: 1589

Scaled my game but the mouse coordinates have a problem

So I scaled my game graphics, everything I drew so that the game could fit in all resolutions based on an aspect ration. As a result of this the game could fit in all devices, however the problem is that i used a button code that works if the area inside of the buttons are pressed. After I scaled th...
by InfamousMakundo
Mon Sep 05, 2016 8:11 pm
Forum: Support and Development
Topic: How to make a clicked image (button) draw an image[SOLVED]
Replies: 7
Views: 5818

Re: How to make a clicked image (button) draw an image

HugoBDesigner wrote: if myButton.clicked then
I changed this to

Code: Select all

if click then
also changed this
HugoBDesigner wrote:button.clicked = true
to

Code: Select all

 click = true
then the code started working better for me, thanks for your help Hugo.
by InfamousMakundo
Sun Aug 28, 2016 4:03 am
Forum: Support and Development
Topic: How to make a clicked image (button) draw an image[SOLVED]
Replies: 7
Views: 5818

How to make a clicked image (button) draw an image[SOLVED]

I made a button with is currenctly a .png file and i want it to make another image appear when it is left clicked by the mouse, please help thanks. :cry: