Does anyone know the name of the Brick Name Box on the WrenchDlg GUI?
I've tried getting the names of the child objects on the GUI, but can't seem to get it working right.
function findSubGUI(%this,%name)
{
%gui = %this.findObjectByInternalName(%name,true);
return %gui;
}
package ChildGUINames
{
function WrenchDlg::onWake(%this,%name)
{
%brickName = findSubGUI();
echo(" " @ %brickName @ " ");
return Parent::onWake(%this,%name);
}
};
activatePackage(ChildGUINames);
I only need the name of the Brick name Box ctrl object, but this function would be
useful for future GUI modification