I am creating a Window component and setting the content as a movieclip in my
library with linkage of "win_setup"...

setupWindow = mx.managers.PopUpManager.createPopUp(_root,
mx.containers.Window, true, {contentPath:"win_setup", title:"Setup"});

and I can add a listener to tell me when the window is created....

setupform = new Object();
setupform.load = function(eventObj){
trace("window loaded");
setupWindow.content.server_txt.text = 'foo';
}
setupWindow.addEventListener("load", setupform);

.... but the line that tries to change a text property in the window's content
is not working. I am assuming this event is only fired when the window is
created and has nothing to do with the content being fully loaded. What should
I do?!