How to Pass Vars from external swf (as child) to parent?

Hi …

I am new to flash.“I am unable to access the variables of child swf in parent swf after an action(button is clicked) is performed in child swf”.

My problem is i had 2 swfs parent.swf and child .swf and i loaded the child.swf file in parent.swf using Loader class there is a textbox and a button in child.swf when we enter text in the textbox(say,notepanel_txt) and click on the button(say, mySubmit) the text present in textbox(notepanel_txt.text) is saved in the database using URLLoader and an variable called success(which is String type) must be available to parent. the code is as follows:

parent.fla


--------------blah… blah…

var textLdr:Loader=new Loader();
var noteUrl:String = “child.swf”;
var urlReq:URLRequest=new URLRequest(noteUrl);

    textLdr.load(urlReq);

    addChild(textLdr);

child.fla



-------------blah… blah…
mySubmit.addaddEventListener(MouseEvent.CLICK,onClick);
function onClick(evnt:MouseEvent):void {

var url:String = "http://localhost:8888/addvalues";

var urlLoader:URLLoader = new URLLoader();
urlLoader.dataFormat = URLLoaderDataFormat.TEXT;

var request:URLRequest = new URLRequest(url);
var variables:URLVariables = new URLVariables();

variables.notevalue= notepanel_txt.text;

request.data = variables;


urlLoader.addEventListener(Event.COMPLETE, completeHandler1);

urlLoader.load(request);

function completeHandler1(event:Event):void {

var success:String = “Added Successfully”; ** [SIZE=3]// this String value must be passed to parent.fla[/SIZE][SIZE=3] from child.fla**[/SIZE]

}
}

I think, you feel free for posting reply to this post.So, spend 3 min.s of your time in filling with reply on behalf of me.

Please Help me… Its Urgent…
Thanks in Advance

Swathi