Load a URL from a txt file

From this code…

 
my_ag = new LoadVars();
my_ko.sendAndLoad("http://myURL",my_ag, "POST"); 

I would like to load the URL - http://myURL - from a txt file…

Do you have any suggestions?

Thanks in advance

I finger it out…

In the txt file i am writing

 urltext=myURL

At actionscript

firts frame
System.useCodepage = true;
loadVariablesNum(“textChangeURL.txt”,0);

also there is a dynamic field named urltext

When I am calling the URL…

 
my_ag = new LoadVars();
my_ko.sendAndLoad([color=red]"[/color][color=red]http://"+urltext[/color],my_ag, "POST");