From: John Joo on
Thanks! This helped me out a ton as well!

"Nabeel Abbood" <nabeel.abbood(a)gmail.com> wrote in message <hl5ias$p04$1(a)fred.mathworks.com>...
> "Alejandro " <notasuicida(a)gmail.com> wrote in message <h065cp$ftl$1(a)fred.mathworks.com>...
> > Hello, I'm using two radio buttons in a button group to select between two different plots, I read the documentation, and I found that I need to use the SelectedObject property of the button group, to let other functions know which element of the group is selected. The problem is that I can't find an example about how to use this property. Can anyone show me an example?
> >
> > Thanks in advance.
>
> same problem for me.
>
> To sort it out I used this syntax :
>
> h=get(handles.Hot_Streams_Order, 'SelectedObject');
> HotOrder=get(h,'Tag')
>
> Where: 'Hot_Streams_Order" is the radio buttons group that I used.
>
> Thanks