Hello!
I´m completely new to gideros and need some help. I want to make an app that sends predefined commands to a remotely controlled gate system using sms. It needs 4 buttons that work in pairs of 2 (open and close) for the inner and outer gate. Once a "open" button is clicked it should stay "lit" and not be usable until the corresponding "close" button has been clicked and activated (lit). Can this be done with gideros? I´m not asking for someone to make the app for me just tell me where I can find the info/tutorial I need to learn to make my app.
Thanks
Comments
About buttons, well there does not seem to be anything impossible there.
There is a Button class and also a Button example provided with Gideros Mobile. The buttons there have two states up and down, so with little modification to the Button class, you could achieve the result you want
Thanks again.