Reply to thread

Hi eightyf,


Sorry I had to pop out of IRC last night.


Anyways, there should be a children property on the GUIWindow, which has an Add(GUIControl control) method.


So something like:

[CODE]GUIImage testImage = new GUIImage(GetID,20,500,200,50,75,"texture path",0);

this.Children.Add(testImage);[/CODE]

should work.


Top Bottom