What do you mean by "frames"? made with uicontrol(), or with subplot()
(or xsetech())?

They are made with uicontrol().

The graphical effect of a uicontrol's callback remains after deleting
the uicontrol.

Ok, it is good.

If all uicontrol are set as direct children of the figure, deleting
all of them in a once could be done with something like
c = gcf().children;
delete(c(c.type=="uicontrol"))

But in my case I would also delete my plot which is in one of the two frames.
The structure is like that:
Figure has two uicontrols Frame; first Frame has Axes (my plot, which I would like to export),second Frame has another uicontrol Frame which has 7 uicontrols Checkbox
I hope it's clear :-)

Iza
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to