hello again :-)
ok, I think the crossdomain is working now, but still a litle(big) problem
if I use
var path_php:URLRequest = new URLRequest("../gestor/php/listar_tabelas.php?"+getTimer());
flash try to load php from index.php domain (this can't work, since there is no php files there)
If using
var path_php:URLRequest = new URLRequest("
http://my_subdomain.my_domain.com/php/listar_tabelas.php?"+getTimer());
must be like this, the full path to the php files, but...
i got this ugly error
Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs.
at Error$/throwError()
at flash.net::URLVariables/decode()
at flash.net::URLVariables$iinit()
at flash.net::URLLoader/flash.net:URLLoader::onComplete()
after reshearch the web I use something like
var path_php:URLRequest = new URLRequest("http:"+encodeURIComponent("//")+"my_subdomain.my_domain.com/php/listar_tabelas.php?"+getTimer());
but now anything fires
how should I reference my
http://subdomain having no ugly error?
Thanks