mech
Member
|
how to access children of GuiObj
is there any way to access the children of a GuiObj?
i.e:
Window tempWin;
Text tempTxt;
GuiObj* tempGuiObjPtr;
Gui += tempWin.create(Rect_C(0, 0, 1.0, 1.0));
tempWin += tempTxt.create(Rect_C(0, 0, 0.8, 0.8), "Test");
tempGuiObjPtr = tempWin.child[0]; <- this is the sort of code i want so that (tempGuiObjPtr == &tempTxt)
i hope this makes sense.
thanks,
rob
|
|
08-20-2009 12:49 AM |
|
Esenthel
Administrator
|
Re: how to access children of GuiObj
this functionality will be available in the next EE release
|
|
08-25-2009 06:23 PM |
|