About Store Forum Documentation Contact



Post Reply 
how to access children of GuiObj
Author Message
mech Offline
Member

Post: #1
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
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
Re: how to access children of GuiObj
this functionality will be available in the next EE release
08-25-2009 06:23 PM
Find all posts by this user Quote this message in a reply
Post Reply