Hi all, i have problem with security issue. I need to access data from internet using :
insert_lv.sendAndLoad(“http://www.datalocation.com/data.php”, result_lv, “POST”);
It doesn’t work. I’ve searched about this problem and found it as security issue. It can be solved by using :
System.security.allowDomain(“www.yourswflocation.com”);
But it only works if you put your swf in server (www.yourswflocation.com). In my case, my swf is desktop application. I dont put it in any server. How can i access the data from internet? Thanks.