HI,
I have decided to use the widget libraries for a simple on/off button which switches music on and off.
Now I have looked at the examples and the docs but I am still not quite getting it.
I have used the radio button widget, I have it displayed and working.
I can get it turn the sound off but not back on.
I need to look for a flag true/false I guess so in my listener function I can:
[lua] if musicButton == true then
audio.play()
elseif muiscButton == false then
audio.stop()
[/lua]
An example would be good.