questions about LoadVars in fms3.5, can not access website php data
hello,everyone, I install a fms3.5(free version) in my pc. I create an application,in the main.asc, code like this:
application.onConnect = function(p_client)
{
this.acceptConnection(p_client);
trace("onConnect");
var send_lv = new LoadVars();
send_lv.kwtype ="1";
send_lv.searchtype="titlekeyword";
send_lv.keyword="sz";
var s=send_lv.send("http://www.s1979.com/plus/search.php", "_blank", "POST");
trace("send:"+s);
}
run the flash app,connect the fms,then in the fms log panel is:
onConnect
send:false
it seems that LoadVars.send() does not work.it can not access the php. and the web-browser didnot open webpage window.
I did not make any config change in the default fms.ini, should I make any config in the fms.ini?
the fms do not allow application to asscee outside data?
In this application, I create a new folder in the {FMS-Install-Dir}/applications
folder, with a main.asc inside. I do not place an Application.xml in this folder.
