actionscript 3 - JSON loads from Local Server, but it doesnt from Remote Server -


i new coding , finished testing codes local server , moving them remote server. works ok when on local server, when uploaded them onto remote server,(everything works fine, except 1 class file). 1 specific class file having problem, when on local server, loading speed slow, wondering if because passing 3 urlrequest thru it. doesn't load @ when on remote server.

i wondering if split them , using addchild other class files if help. time!

            mend = new urlrequest("http://rentaid.info/myaccount_1.php");             mend.method = urlrequestmethod.post;              variablesss = new urlvariables();             variablesss.username = s7.statusname.text;             mend.data = variablesss;               nloader = new urlloader();             nloader.dataformat = urlloaderdataformat.text;             nloader.load(mend);               send = new urlrequest("http://rentaid.info/autojson.php");             send.method = urlrequestmethod.post;             aloader = new urlloader();             aloader.dataformat = urlloaderdataformat.text;             aloader.load(send);               send1 = new urlrequest("http://rentaid.info/accountinfo.php");             send1.method = urlrequestmethod.post;             aloader1 = new urlloader();             aloader1.dataformat = urlloaderdataformat.text;             aloader1.load(send1);                 aloader1.addeventlistener(event.complete,sandler1); 


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -