Search found 3 matches

by kunoir
Thu Dec 12, 2013 1:05 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Making a button like a checkbox with icons for on and off.
Replies: 3
Views: 3051

Making a button like a checkbox with icons for on and off.

I want to have a button that has two states like a checkbox.

But I want the icon to change to make it obvious that it is selected.


I tried to use the code below but it didn't work.

on mouseUp
if variable = 0 then
put "4" into variable
set the armed of me to "true"
else
put "0" into ...
by kunoir
Tue Sep 10, 2013 11:09 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Lock screen and disable user input
Replies: 3
Views: 3253

Re: Lock screen and disable user input

Awesome I will give both these solutions a try and get back to you. Thanks so much for the help.
by kunoir
Tue Sep 10, 2013 7:12 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Lock screen and disable user input
Replies: 3
Views: 3253

Lock screen and disable user input

Hi everyone,

First post :D

I am creating a guessing the animal game and have four choices. Once the correct/incorrect animal is chosen I would like to create a green/red square around the choice and lock the screen for 5 seconds.

I just used:

set the visible of graphic correctRectangle to true ...