simplest way to do this
settings box does this:
2 radio buttons so that you either select optionA or optionB
on click OK settings are saved
Gadget does this:
upon closing of settings dialog box gadget updates to the settings
you entered via funtions such as
function optionCheck()
{ IF OptionA == "true"
do this { some more stuff }
Else
{ do this instead }
}
basically what I would like to do is have the settings dialog box open
with 2 radio button options which are then saved so that I can then
have the gadget can a function that checks the settings and changes
itself accordingly.
This should be really simple but for some reason I just can't get it,