Am 07.07.2010, 13:41 Uhr, schrieb shi <[email protected]>: > Hello list, > > What is the recommended way of hiding (without removing them) a group of > controls on the FC2 canvas? > > I have already organized the canvas contents so that the > controls in one group have a common "Group" node as ancestor.
Doing myGroupNode.shown = False should work. I've just tested it and it does not work fully. A workaround is to loop over all the objects you want to have hidden (e.g. loop over all the children of the group or use a node visitor) and then do node.shown = False. -Matthias _______________________________________________ FloatCanvas mailing list [email protected] http://paulmcnett.com/cgi-bin/mailman/listinfo/floatcanvas
